From 4139e36c8363d8bd626f8e96260c649c56f2c5c9 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Sat, 15 Mar 2014 16:35:31 +0000 Subject: [PATCH] Adapt the Oracle Linux install functions to proper matching ones. --- bootstrap-salt.sh | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 74f892e..deb788e 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -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 # #######################################################################################################################