From d198fe6b38c1bdd808fbc6aa6fe5d1644002eeeb Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 8 Dec 2022 13:26:54 +0100 Subject: [PATCH] Cosmetic: repo-install-test: sort env vars comment Related: OS#5365 Change-Id: Ic21b46e614c7bfd8e0306599b4d33a1b963db376 --- scripts/repo-install-test.sh | 4 ++-- scripts/repo-install-test/run-inside-docker.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/repo-install-test.sh b/scripts/repo-install-test.sh index 2a3e7391..f2fbdc85 100755 --- a/scripts/repo-install-test.sh +++ b/scripts/repo-install-test.sh @@ -1,10 +1,10 @@ #!/bin/sh -ex # Environment variables: -# * INTERACTIVE: set to 1 to keep an interactive shell open after the script ran (for debugging) # * FEED: binary package feed (e.g. "latest", "nightly") +# * INTERACTIVE: set to 1 to keep an interactive shell open after the script ran (for debugging) +# * KEEP_CACHE: set to 1 to keep downloaded binary packages (for development) # * PROJ: OBS project namespace (e.g. "osmocom:latest") # * PROJ_CONFLICT: Conflicting OBS project namespace (e.g. "osmocom:nightly") -# * KEEP_CACHE: set to 1 to keep downloaded binary packages (for development) # * TESTS: which tests to run (all by default, see below for possible values) . "$(dirname "$0")/common.sh" diff --git a/scripts/repo-install-test/run-inside-docker.sh b/scripts/repo-install-test/run-inside-docker.sh index f95bae02..ce71bb8d 100755 --- a/scripts/repo-install-test/run-inside-docker.sh +++ b/scripts/repo-install-test/run-inside-docker.sh @@ -1,10 +1,10 @@ #!/bin/sh -ex # Environment variables: +# * DISTRO: linux distribution name (e.g. "centos8") # * FEED: binary package feed (e.g. "latest", "nightly") +# * KEEP_CACHE: set to 1 to keep downloaded binary packages (for development) # * PROJ: OBS project namespace (e.g. "osmocom:latest") # * PROJ_CONFLICT: Conflicting OBS project namespace (e.g. "osmocom:nightly") -# * KEEP_CACHE: set to 1 to keep downloaded binary packages (for development) -# * DISTRO: linux distribution name (e.g. "centos8") # * TESTS: which tests to run (see repo-install-test.sh) # Systemd services that must start up successfully after installing all packages (OS#3369)