From 2d6a1decc8f83e6718876aaf8c4bd947e8ee92fb Mon Sep 17 00:00:00 2001 From: "Gary T. Giesen" Date: Mon, 31 Oct 2022 15:14:25 -0400 Subject: [PATCH] Fix missing functions for post-installation on EL clones --- bootstrap-salt.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index f6f714b..7ee2df7 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -5345,6 +5345,11 @@ install_oracle_linux_git_post() { return 0 } +install_oracle_linux_onedir_post() { + install_centos_onedir_post || return 1 + return 0 +} + install_oracle_linux_testing_post() { install_centos_testing_post || return 1 return 0 @@ -5418,6 +5423,11 @@ install_almalinux_git_post() { return 0 } +install_almalinux_onedir_post() { + install_centos_onedir_post || return 1 + return 0 +} + install_almalinux_testing_post() { install_centos_testing_post || return 1 return 0 @@ -5491,6 +5501,11 @@ install_rocky_linux_git_post() { return 0 } +install_rocky_linux_onedir_post() { + install_centos_onedir_post || return 1 + return 0 +} + install_rocky_linux_testing_post() { install_centos_testing_post || return 1 return 0 @@ -5564,6 +5579,11 @@ install_scientific_linux_git_post() { return 0 } +install_scientific_linux_onedir_post() { + install_centos_onedir_post || return 1 + return 0 +} + install_scientific_linux_testing_post() { install_centos_testing_post || return 1 return 0