diff options
| author | Micah Anderson <micah@riseup.net> | 2013-02-12 13:31:55 -0500 | 
|---|---|---|
| committer | Micah Anderson <micah@riseup.net> | 2013-02-12 14:06:16 -0500 | 
| commit | 2e5eec3856b58aaff0a2049599a6455e6ff91122 (patch) | |
| tree | 3f3f5c217c40f3037c1b2a9cd8da3fe91fdd8389 /puppet/modules | |
| parent | ba2b83b19f951322e85f64bf010764a49ee9f2f4 (diff) | |
missed one require => Package['shorewall'] on of the file resources in site_shorewall
Diffstat (limited to 'puppet/modules')
| -rw-r--r-- | puppet/modules/site_shorewall/manifests/service/webapp_api.pp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/puppet/modules/site_shorewall/manifests/service/webapp_api.pp b/puppet/modules/site_shorewall/manifests/service/webapp_api.pp index 9d4296e5..0c6c824d 100644 --- a/puppet/modules/site_shorewall/manifests/service/webapp_api.pp +++ b/puppet/modules/site_shorewall/manifests/service/webapp_api.pp @@ -6,7 +6,8 @@ class site_shorewall::service::webapp_api {    # define macro for incoming services    file { '/etc/shorewall/macro.leap_webapp_api':      content => "PARAM   -       -       tcp    $api_port ", -    notify  => Service['shorewall'] +    notify  => Service['shorewall'], +    require => Package['shorewall']    } | 
