mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 10:10:25 +00:00
updating bootstrap script for freebsd 10
This commit is contained in:
parent
6b80d2710a
commit
a9e44b8eec
1 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue