]> review.fuel-infra Code Review - puppet-modules/puppetlabs-firewall.git/commitdiff
Fixed lint issue
authorJonathan Tripathy <jt@puppetlabs.com>
Wed, 6 May 2015 10:54:09 +0000 (11:54 +0100)
committerJonathan Tripathy <jt@puppetlabs.com>
Wed, 6 May 2015 10:54:09 +0000 (11:54 +0100)
manifests/linux/redhat.pp

index 36571bba93e6eb144cf93d479b22603c27bcef25..95e137fbe4e0b5358e9add7bf0a3174775f9e6b6 100644 (file)
@@ -44,9 +44,9 @@ class firewall::linux::redhat (
   or  ($::operatingsystem == 'Fedora' and versioncmp($::operatingsystemrelease, '15') >= 0)) {
     if $ensure == 'running' {
       exec { '/usr/bin/systemctl daemon-reload':
-        require   => Package[$package_name],
-        before    => Service[$service_name],
-        unless    => '/usr/bin/systemctl is-active iptables'
+        require => Package[$package_name],
+        before  => Service[$service_name],
+        unless  => '/usr/bin/systemctl is-active iptables'
       }
     }
   }