From a73156e6fee2669eef9273ddd9f3055e1354cc02 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Thu, 13 Apr 2023 18:01:59 -0700 Subject: [PATCH] change title of section, add poetry examples --- docs/documentation/compose/index.md | 6 ++++-- docs/documentation/empanadas.md | 11 +++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/documentation/compose/index.md b/docs/documentation/compose/index.md index 2dc4925..768051a 100644 --- a/docs/documentation/compose/index.md +++ b/docs/documentation/compose/index.md @@ -1,5 +1,7 @@ --- -title: Composing Releases +title: Composing and Managing Releases --- -This section goes over the process of composing a release. +This section goes over the process of composing a release from a bunch of +packages to repositories, to images. This section also goes over the basics of +working with koji when necessary. diff --git a/docs/documentation/empanadas.md b/docs/documentation/empanadas.md index f8765b0..d91d105 100644 --- a/docs/documentation/empanadas.md +++ b/docs/documentation/empanadas.md @@ -87,4 +87,15 @@ options. Note that for each of these commands, it is fully expected you are running `poetry run` in the root of empanadas. +``` +# Syncs all repositoryes for the "9" release +% poetry run sync_from_peridot --release 9 --clean-old-packages + +# Syncs only the BaseOS repository without syncing sources +% poetry run sync_from_peridot --release 9 --clean-old-packages --repo BaseOS --ignore-source + +# Syncs only AppStream for ppc64le +% poetry run sync_from_peridot --release 9 --clean-old-packages --repo AppStream --arch ppc64le +``` + {% include "resources_bottom.md" %}