mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 10:10:25 +00:00
Merge pull request #1877 from ggiesen/fix_el_onedir_post_installation
Fix missing functions for post-installation on EL clones
This commit is contained in:
commit
ae19813dc1
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