diff options
author | Micah Anderson <micah@leap.se> | 2013-09-05 14:23:15 -0400 |
---|---|---|
committer | Micah Anderson <micah@leap.se> | 2013-09-05 14:43:46 -0400 |
commit | a6a001c4b2bb147a3ef25f9058c48658bf1ef573 (patch) | |
tree | 6a1ee742fd773ff39455cc1fbc8d4c59f8e01786 | |
parent | bda67fd78d64bcc152535d2d16bca9b31c1ecbf8 (diff) |
require that shorewall is up before running bundler commands, it needs to pull things from git (#3756)0.3.0rc1
Change-Id: If404452c54dedb7a39a910994dc68309257d351d
-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 9c4c2693..b4d5bb14 100644 --- a/puppet/modules/site_webapp/manifests/init.pp +++ b/puppet/modules/site_webapp/manifests/init.pp @@ -49,7 +49,7 @@ class site_webapp { unless => '/usr/bin/bundle check', user => 'leap-webapp', timeout => 600, - require => [ Class['bundler::install'], Vcsrepo['/srv/leap/webapp'] ], + require => [ Class['bundler::install'], Vcsrepo['/srv/leap/webapp'], Service['shorewall'] ], notify => Service['apache']; } |