mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Add functions for testing install type. Fixes #216
This commit is contained in:
parent
59d461254a
commit
bbf127084a
1 changed files with 59 additions and 0 deletions
|
@ -1777,6 +1777,22 @@ install_centos_restart_daemons() {
|
|||
fi
|
||||
done
|
||||
}
|
||||
|
||||
install_centos_testing_deps() {
|
||||
install_centos_stable_deps || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_centos_testing() {
|
||||
install_centos_stable || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_centos_testing_post() {
|
||||
install_centos_stable_post || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
#
|
||||
# Ended CentOS Install Functions
|
||||
#
|
||||
|
@ -1899,6 +1915,38 @@ install_red_hat_enterprise_server_git_post() {
|
|||
install_red_hat_linux_git_post || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_red_hat_linux_testing_deps() {
|
||||
install_centos_testing_deps || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_red_hat_linux_testing() {
|
||||
install_centos_testing || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_red_hat_linux_testing_post() {
|
||||
install_centos_testing_post || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_red_hat_enterprise_server_testing_deps() {
|
||||
install_centos_testing_deps || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_red_hat_enterprise_server_testing() {
|
||||
install_centos_testing || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_red_hat_enterprise_server_testing_post() {
|
||||
install_centos_testing_post || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
|
||||
#
|
||||
# Ended RedHat Install Functions
|
||||
#
|
||||
|
@ -1965,6 +2013,17 @@ install_amazon_linux_ami_git_post() {
|
|||
install_centos_git_post || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_amazon_linux_ami_testing() {
|
||||
install_centos_testing || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_amazon_linux_ami_testing_post() {
|
||||
install_centos_testing_post || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
#
|
||||
# Ended Amazon Linux AMI Install Functions
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue