diff options
author | varac <varacanero@zeromail.org> | 2016-04-25 16:41:34 -0300 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2016-04-25 16:41:34 -0300 |
commit | 07f8cf9c307471128eef1ded3a77633869c89bcd (patch) | |
tree | 22705e582bb300936db0fb343402011b704f9596 /puppet/modules/obfsproxy | |
parent | 2c5d27327bc1a90f5813e55a40d0acac644a13eb (diff) | |
parent | f2f2c7391056c252523730cd76ab759db9117c9c (diff) |
Merge branch 'linting' into develop
Diffstat (limited to 'puppet/modules/obfsproxy')
-rw-r--r-- | puppet/modules/obfsproxy/manifests/init.pp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/puppet/modules/obfsproxy/manifests/init.pp b/puppet/modules/obfsproxy/manifests/init.pp index 5c78560a..6a3d2c72 100644 --- a/puppet/modules/obfsproxy/manifests/init.pp +++ b/puppet/modules/obfsproxy/manifests/init.pp @@ -1,3 +1,4 @@ +# deploy obfsproxy service class obfsproxy ( $transport, $bind_address, @@ -23,18 +24,18 @@ 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], + ensure => present, + path => '/etc/init.d/obfsproxy', + source => 'puppet:///modules/obfsproxy/obfsproxy_init', + owner => 'root', + group => 'root', + mode => '0750', + require => File[$conf], } file { $conf : - path => $conf, ensure => present, + path => $conf, owner => 'root', group => 'root', mode => '0600', |