updating bootstrap script for freebsd 10

This commit is contained in:
Mike Carlson 2014-01-30 20:16:01 -08:00
parent 6b80d2710a
commit a9e44b8eec

View file

@ -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