Make bootstrap work with FreeBSD 11-CURRENT.

This commit is contained in:
Chris Buechler 2015-09-04 21:38:31 -05:00
parent b1624cc14a
commit 7ae5bfbc09

View file

@ -4011,6 +4011,10 @@ install_freebsd_10_stable_deps() {
install_freebsd_9_stable_deps
}
install_freebsd_11_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}
@ -4088,6 +4092,10 @@ install_freebsd_10_stable() {
install_freebsd_9_stable
}
install_freebsd_11_stable() {
install_freebsd_9_stable
}
install_freebsd_git() {
# shellcheck disable=SC2086
/usr/local/sbin/pkg install ${SALT_PKG_FLAGS} -y sysutils/py-salt || return 1
@ -4169,6 +4177,10 @@ install_freebsd_10_stable_post() {
install_freebsd_9_stable_post
}
install_freebsd_11_stable_post() {
install_freebsd_9_stable_post
}
install_freebsd_git_post() {
install_freebsd_9_stable_post || return 1
return 0