mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Make __install_debian_stable
function "public"
This commit is contained in:
parent
6034642577
commit
c69974cd34
1 changed files with 4 additions and 4 deletions
|
@ -2698,7 +2698,7 @@ install_debian_8_git_deps() {
|
|||
return 0
|
||||
}
|
||||
|
||||
__install_debian_stable() {
|
||||
install_debian_stable() {
|
||||
__PACKAGES=""
|
||||
if [ "$_INSTALL_MINION" -eq $BS_TRUE ]; then
|
||||
__PACKAGES="${__PACKAGES} salt-minion"
|
||||
|
@ -2716,17 +2716,17 @@ __install_debian_stable() {
|
|||
}
|
||||
|
||||
install_debian_6_stable() {
|
||||
__install_debian_stable || return 1
|
||||
install_debian_stable || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_debian_7_stable() {
|
||||
__install_debian_stable || return 1
|
||||
install_debian_stable || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
install_debian_8_stable() {
|
||||
__install_debian_stable || return 1
|
||||
install_debian_stable || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue