aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-05-02 16:24:57 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-05-02 16:24:57 -0300
commite096f08d5c3ff368cde923beaedf77d6bbac5ac1 (patch)
tree20849132e6bd5dc137e147a07d7d041e9f19d1aa
parent0a4a8cc513ed3c33d257537917e07c713456577d (diff)
downloadpuppet-bootstrap-e096f08d5c3ff368cde923beaedf77d6bbac5ac1.tar.gz
puppet-bootstrap-e096f08d5c3ff368cde923beaedf77d6bbac5ac1.tar.bz2
Deploy: setup DEPLOY_DEPENDENCIES
-rwxr-xr-xbin/dependencies2
-rwxr-xr-xbin/provision2
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/dependencies b/bin/dependencies
index 0c45b15..86c281e 100755
--- a/bin/dependencies
+++ b/bin/dependencies
@@ -5,7 +5,7 @@
# Parameters
BASENAME="`basename $0`"
-DEPLOY_DEPENDENCIES="puppet-common"
+DEPLOY_DEPENDENCIES="usb-utils puppet-common"
DEVELOP_DEPENDENCIES="git mr whois"
# Additional wheezy dependencies if not using puppet-common from wheezy-backports
diff --git a/bin/provision b/bin/provision
index f3e8404..99cb862 100755
--- a/bin/provision
+++ b/bin/provision
@@ -13,7 +13,7 @@ source $DIRNAME/dependencies
$SUDO apt-get update && DEBIAN_FRONTEND=noninteractive $SUDO apt-get dist-upgrade -y && $SUDO apt-get autoremove -y && $SUDO apt-get clean
# Ensure additional dependencies are installed.
-for package in usbutils; do
+for package in $DEPLOY_DEPENDENCIES; do
provision_package $package
done