diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-05-02 16:24:57 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-05-02 16:24:57 -0300 |
commit | e096f08d5c3ff368cde923beaedf77d6bbac5ac1 (patch) | |
tree | 20849132e6bd5dc137e147a07d7d041e9f19d1aa /bin | |
parent | 0a4a8cc513ed3c33d257537917e07c713456577d (diff) | |
download | puppet-bootstrap-e096f08d5c3ff368cde923beaedf77d6bbac5ac1.tar.gz puppet-bootstrap-e096f08d5c3ff368cde923beaedf77d6bbac5ac1.tar.bz2 |
Deploy: setup DEPLOY_DEPENDENCIES
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/dependencies | 2 | ||||
-rwxr-xr-x | bin/provision | 2 |
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 |