diff options
author | varac <varacanero@zeromail.org> | 2016-04-18 18:19:44 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2016-04-18 18:19:44 +0200 |
commit | 22b788920defdd42b4abda144afd8ca69d0a9d37 (patch) | |
tree | 375dd16aee466d5a04c06635b19b2e69978fcbe8 /puppet/modules/obfsproxy/manifests | |
parent | 97900133a2a7c3538ac20439fe0b7b9cff1357f1 (diff) |
[style] lint some custom manifests
I used `puppet-lint -f FILE` to fix most issues, while
finishing with manual intervention.
Diffstat (limited to 'puppet/modules/obfsproxy/manifests')
-rw-r--r-- | puppet/modules/obfsproxy/manifests/init.pp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/puppet/modules/obfsproxy/manifests/init.pp b/puppet/modules/obfsproxy/manifests/init.pp index 5c78560a..728295f7 100644 --- a/puppet/modules/obfsproxy/manifests/init.pp +++ b/puppet/modules/obfsproxy/manifests/init.pp @@ -23,13 +23,13 @@ class obfsproxy ( } file { '/etc/init.d/obfsproxy': - path => '/etc/init.d/obfsproxy', - ensure => present, - source => 'puppet:///modules/obfsproxy/obfsproxy_init', - owner => 'root', - group => 'root', - mode => '0750', - require => File[$conf], + path => '/etc/init.d/obfsproxy', + ensure => present, + source => 'puppet:///modules/obfsproxy/obfsproxy_init', + owner => 'root', + group => 'root', + mode => '0750', + require => File[$conf], } file { $conf : |