diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-25 12:37:56 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-25 12:37:56 -0300 |
commit | 41b8ef0874afee6d1717429b672b993ed2ef01fc (patch) | |
tree | 1bea40c68f3294357bbce6d201f4fcc72889027d /bin/dependencies | |
parent | 64b8d70fbf9c903ddc4862c1d324df3739a78fcb (diff) | |
download | puppet-bootstrap-41b8ef0874afee6d1717429b672b993ed2ef01fc.tar.gz puppet-bootstrap-41b8ef0874afee6d1717429b672b993ed2ef01fc.tar.bz2 |
Fix deploy dependencies
Diffstat (limited to 'bin/dependencies')
-rwxr-xr-x | bin/dependencies | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dependencies b/bin/dependencies index c6f09ab..bfc866a 100755 --- a/bin/dependencies +++ b/bin/dependencies @@ -9,7 +9,7 @@ DEPLOY_DEPENDENCIES="puppet-common" DEVELOP_DEPENDENCIES="git mr whois" # Additional wheezy dependencies -if [ "`head -c 1 /etc/debian_version`" != '7' ]; then +if [ "`head -c 1 /etc/debian_version`" == '7' ]; then DEPLOY_DEPENDENCIES="$DEPLOY_DEPENDENCIES ruby-hiera-puppet" fi |