From a9e44b8eec297b608fbe494aee32ce31f4b6c0f0 Mon Sep 17 00:00:00 2001 From: Mike Carlson Date: Thu, 30 Jan 2014 20:16:01 -0800 Subject: [PATCH] updating bootstrap script for freebsd 10 --- bootstrap-salt.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index c320826..68aea24 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -2427,6 +2427,10 @@ install_freebsd_9_stable_deps() { return 0 } +install_freebsd_10_stable_deps() { + install_freebsd_9_stable_deps +} + config_freebsd_salt() { # Set _SALT_ETC_DIR to ports default _SALT_ETC_DIR=${BS_SALT_ETC_DIR:-/usr/local/etc/salt} @@ -2487,6 +2491,10 @@ install_freebsd_9_stable() { return 0 } +install_freebsd_10_stable() { + install_freebsd_9_stable +} + install_freebsd_git() { /usr/local/sbin/pkg install ${SALT_PKG_FLAGS} -y sysutils/py-salt || return 1 @@ -2548,6 +2556,10 @@ install_freebsd_9_stable_post() { done } +install_freebsd_10_stable_post() { + install_freebsd_9_stable_post +} + install_freebsd_git_post() { install_freebsd_9_stable_post || return 1 return 0