From 7f57964217eca8dc42950f7188464b89393cbcae Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Mon, 22 Oct 2012 01:51:59 +0100 Subject: [PATCH] Fix copy/paste bug that prevented the post functions to be searched correctly. --- bootstrap-salt-minion.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap-salt-minion.sh b/bootstrap-salt-minion.sh index b081b40..ad63efb 100755 --- a/bootstrap-salt-minion.sh +++ b/bootstrap-salt-minion.sh @@ -598,9 +598,9 @@ done # Let's get the dependencies install function POST_FUNC_NAMES="install_${DISTRO_NAME_L}${DISTRO_VERSION_NO_DOTS}_${ITYPE}_post" -POST_FUNC_NAMES="$DEP_FUNC_NAMES install_${DISTRO_NAME_L}${DISTRO_VERSION_NO_DOTS}_post" -POST_FUNC_NAMES="$DEP_FUNC_NAMES install_${DISTRO_NAME_L}_${ITYPE}_post" -POST_FUNC_NAMES="$DEP_FUNC_NAMES install_${DISTRO_NAME_L}_post" +POST_FUNC_NAMES="$POST_FUNC_NAMES install_${DISTRO_NAME_L}${DISTRO_VERSION_NO_DOTS}_post" +POST_FUNC_NAMES="$POST_FUNC_NAMES install_${DISTRO_NAME_L}_${ITYPE}_post" +POST_FUNC_NAMES="$POST_FUNC_NAMES install_${DISTRO_NAME_L}_post" POST_INSTALL_FUNC="null" for FUNC_NAME in $POST_FUNC_NAMES; do