mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Fix missing functions for post-installation on EL clones
This commit is contained in:
parent
e5fca86998
commit
2d6a1decc8
1 changed files with 20 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue