From c69974cd347e670275136c387d7359401bfc1acc Mon Sep 17 00:00:00 2001 From: Denys Havrysh Date: Thu, 3 Mar 2016 10:12:50 +0200 Subject: [PATCH] Make `__install_debian_stable` function "public" --- bootstrap-salt.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 803f98e..42ec15e 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -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 }