diff options
author | Micah Anderson <micah@riseup.net> | 2012-11-22 11:06:26 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2012-11-22 11:06:26 -0500 |
commit | 0d1ac3dc005721858623ca2e9f0a1d4bf50fff42 (patch) | |
tree | a48e1070921ed2cda2ef53a19a93a85efb450b03 /puppet/modules/site_webapp/manifests | |
parent | b1c8c57b1fb028ea4ce8c8954bfdad9b9e7f2766 (diff) |
remove escaping double-quotes, it turns out these are passed directly to the command causing it to fail
Diffstat (limited to 'puppet/modules/site_webapp/manifests')
-rw-r--r-- | puppet/modules/site_webapp/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/site_webapp/manifests/init.pp b/puppet/modules/site_webapp/manifests/init.pp index 107aa617..b44ef01a 100644 --- a/puppet/modules/site_webapp/manifests/init.pp +++ b/puppet/modules/site_webapp/manifests/init.pp @@ -41,7 +41,7 @@ class site_webapp { exec { 'bundler_update': cwd => '/srv/leap-webapp', - command => '/bin/bash -c \"/usr/bin/bundle check || /usr/bin/bundle install\"', + command => '/bin/bash -c "/usr/bin/bundle check || /usr/bin/bundle install"', unless => '/usr/bin/bundle check', require => [ Class['bundler::install'], Vcsrepo['/srv/leap-webapp'] ]; } |