summaryrefslogtreecommitdiff
path: root/puppet
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2012-11-22 11:06:26 -0500
committerMicah Anderson <micah@riseup.net>2012-11-22 11:06:26 -0500
commit0d1ac3dc005721858623ca2e9f0a1d4bf50fff42 (patch)
treea48e1070921ed2cda2ef53a19a93a85efb450b03 /puppet
parentb1c8c57b1fb028ea4ce8c8954bfdad9b9e7f2766 (diff)
remove escaping double-quotes, it turns out these are passed directly to the command causing it to fail
Diffstat (limited to 'puppet')
-rw-r--r--puppet/modules/site_webapp/manifests/init.pp2
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'] ];
}