diff options
| author | Micah <micah@leap.se> | 2016-05-10 14:48:26 -0400 | 
|---|---|---|
| committer | Micah <micah@leap.se> | 2016-05-10 14:48:26 -0400 | 
| commit | 86c85582065c391aa13c0b9b397dfd1aa2e2ac7b (patch) | |
| tree | 7c027409a517d862864bf3650f4a8a66f615162d /puppet/modules/obfsproxy | |
| parent | 70b1c648b94e6c007b9241a4661f33881e74485f (diff) | |
| parent | 66b4c6b5ec6fe2f242020845fe92715ae2cdcc1e (diff) | |
Merge tag '0.8.0'
Release 0.8.0
Diffstat (limited to 'puppet/modules/obfsproxy')
| -rw-r--r-- | puppet/modules/obfsproxy/manifests/init.pp | 20 | 
1 files changed, 10 insertions, 10 deletions
diff --git a/puppet/modules/obfsproxy/manifests/init.pp b/puppet/modules/obfsproxy/manifests/init.pp index 61714fdf..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', @@ -67,8 +68,7 @@ class obfsproxy (    }    package { 'obfsproxy': -    ensure  => present, -    require => Class['site_apt::preferences::obfsproxy'], +    ensure  => present    }    service { 'obfsproxy':  | 
