From 2ca04bbf489a36e5415c2a35a557013940d1cde7 Mon Sep 17 00:00:00 2001 From: Laura Brehm Date: Thu, 19 Sep 2024 22:13:23 +0100 Subject: [PATCH 1/3] rootless: update test+stable versions to 27.3.0 Signed-off-by: Laura Brehm --- rootless-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootless-install.sh b/rootless-install.sh index 8b79f1be..019a8889 100755 --- a/rootless-install.sh +++ b/rootless-install.sh @@ -21,10 +21,10 @@ SCRIPT_COMMIT_SHA=UNKNOWN # This script should be run with an unprivileged user and install/setup Docker under $HOME/bin/. # latest version available in the stable channel. -STABLE_LATEST="27.2.1" +STABLE_LATEST="27.3.0" # latest version available in the test channel. -TEST_LATEST="27.3.0-rc.2" +TEST_LATEST="27.3.0" # The channel to install from: # * test From d17913dd3f215dcbb54a2645df76d3972b91423d Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 23 Sep 2024 11:43:16 +0200 Subject: [PATCH 2/3] rootless: update test+stable versions to 27.3.1 Signed-off-by: Sebastiaan van Stijn --- rootless-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootless-install.sh b/rootless-install.sh index 019a8889..8b165df0 100755 --- a/rootless-install.sh +++ b/rootless-install.sh @@ -21,10 +21,10 @@ SCRIPT_COMMIT_SHA=UNKNOWN # This script should be run with an unprivileged user and install/setup Docker under $HOME/bin/. # latest version available in the stable channel. -STABLE_LATEST="27.3.0" +STABLE_LATEST="27.3.1" # latest version available in the test channel. -TEST_LATEST="27.3.0" +TEST_LATEST="27.3.1" # The channel to install from: # * test From 83b23cede1b896f076786cb17c83971c653d6d5d Mon Sep 17 00:00:00 2001 From: rajdeep1008 Date: Tue, 24 Sep 2024 12:04:04 +0530 Subject: [PATCH 3/3] "yum config-manager" to "yum-config-manager" Signed-off-by: rajdeep1008 --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 3350d695..48b0d6ad 100755 --- a/install.sh +++ b/install.sh @@ -584,11 +584,11 @@ do_install() { $sh_c "dnf makecache" else $sh_c "yum -y -q install yum-utils" - $sh_c "yum config-manager --add-repo $repo_file_url" + $sh_c "yum-config-manager --add-repo $repo_file_url" if [ "$CHANNEL" != "stable" ]; then - $sh_c "yum config-manager --disable \"docker-ce-*\"" - $sh_c "yum config-manager --enable \"docker-ce-$CHANNEL\"" + $sh_c "yum-config-manager --disable \"docker-ce-*\"" + $sh_c "yum-config-manager --enable \"docker-ce-$CHANNEL\"" fi $sh_c "yum makecache" fi