From babdd5f10a6f9581058039f98c4349952ba0f32b Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Fri, 14 Feb 2014 20:52:16 +0000 Subject: [PATCH] Provide aliases for RHEL Workstation. Fixes #304. --- bootstrap-salt.sh | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 7010d47..5a01f69 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -2040,6 +2040,16 @@ install_red_hat_enterprise_server_git_deps() { return 0 } +install_red_hat_enterprise_workstation_stable_deps() { + install_red_hat_linux_stable_deps || return 1 + return 0 +} + +install_red_hat_enterprise_workstation_git_deps() { + install_red_hat_linux_git_deps || return 1 + return 0 +} + install_red_hat_linux_stable() { install_centos_stable || return 1 return 0 @@ -2070,6 +2080,17 @@ install_red_hat_enterprise_server_git() { return 0 } +install_red_hat_enterprise_workstation_stable() { + install_red_hat_linux_stable || return 1 + return 0 +} + +install_red_hat_enterprise_workstation_git() { + install_red_hat_linux_git || return 1 + return 0 +} + + install_red_hat_linux_stable_post() { install_centos_stable_post || return 1 return 0 @@ -2115,6 +2136,22 @@ install_red_hat_enterprise_server_git_post() { return 0 } +install_red_hat_enterprise_workstation_stable_post() { + install_red_hat_linux_stable_post || return 1 + return 0 +} + +install_red_hat_enterprise_workstation_restart_daemons() { + install_red_hat_linux_restart_daemons || return 1 + return 0 +} + +install_red_hat_enterprise_workstation_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 @@ -2145,7 +2182,20 @@ install_red_hat_enterprise_server_testing_post() { return 0 } +install_red_hat_enterprise_workstation_testing_deps() { + install_centos_testing_deps || return 1 + return 0 +} +install_red_hat_enterprise_workstation_testing() { + install_centos_testing || return 1 + return 0 +} + +install_red_hat_enterprise_workstation_testing_post() { + install_centos_testing_post || return 1 + return 0 +} # # Ended RedHat Install Functions #