mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 01:30:21 +00:00
Adapt the Oracle Linux install functions to proper matching ones.
This commit is contained in:
parent
efc9db7f57
commit
4139e36c83
1 changed files with 13 additions and 13 deletions
|
@ -2583,65 +2583,65 @@ install_red_hat_enterprise_workstation_testing_post() {
|
|||
|
||||
#######################################################################################################################
|
||||
#
|
||||
# Oracle Enterprise Linux Install Functions
|
||||
# Oracle Linux Install Functions
|
||||
#
|
||||
install_enterpriseenterpriseserver_stable_deps() {
|
||||
install_oracle_linux_stable_deps() {
|
||||
install_centos_stable_deps || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_enterpriseenterpriseserver_git_deps() {
|
||||
install_oracle_linux_git_deps() {
|
||||
install_centos_git_deps || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_enterpriseenterpriseserver_testing_deps() {
|
||||
install_oracle_linux_testing_deps() {
|
||||
install_centos_testing_deps || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_enterpriseenterpriseserver_stable() {
|
||||
install_oracle_linux_stable() {
|
||||
install_centos_stable || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_enterpriseenterpriseserver_git() {
|
||||
install_oracle_linux_git() {
|
||||
install_centos_git || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_enterpriseenterpriseserver_testing() {
|
||||
install_oracle_linux_testing() {
|
||||
install_centos_testing || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_enterpriseenterpriseserver_stable_post() {
|
||||
install_oracle_linux_stable_post() {
|
||||
install_centos_stable_post || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_enterpriseenterpriseserver_git_post() {
|
||||
install_oracle_linux_git_post() {
|
||||
install_centos_git_post || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
|
||||
install_enterpriseenterpriseserver_testing_post() {
|
||||
install_oracle_linux_testing_post() {
|
||||
install_centos_testing_post || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_enterpriseenterpriseserver_restart_daemons() {
|
||||
install_oracle_linux_restart_daemons() {
|
||||
install_centos_restart_daemons || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_enterpriseenterpriseserver_check_services() {
|
||||
install_oracle_linux_check_services() {
|
||||
install_centos_check_services || return 1
|
||||
return 0
|
||||
}
|
||||
#
|
||||
# Ended Oracle Enterprise Linux Install Functions
|
||||
# Ended Oracle Linux Install Functions
|
||||
#
|
||||
#######################################################################################################################
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue