diff options
| author | irregulator <irregulator@riseup.net> | 2014-05-22 20:52:44 +0300 | 
|---|---|---|
| committer | elijah <elijah@riseup.net> | 2014-07-01 16:05:41 -0700 | 
| commit | 1a0161da0ff420d26732b492898ebf0074b2292c (patch) | |
| tree | 3db599bc635cce6f0076fa7ab59a972e259a884c | |
| parent | ae75dccbb6a65ee22b6185dcd8c0fedd14e35d0f (diff) | |
Line up equal signs, change double to single quotes
| -rw-r--r-- | puppet/modules/obfsproxy/manifests/init.pp | 8 | ||||
| -rw-r--r-- | puppet/modules/site_obfsproxy/manifests/init.pp | 10 | 
2 files changed, 9 insertions, 9 deletions
| diff --git a/puppet/modules/obfsproxy/manifests/init.pp b/puppet/modules/obfsproxy/manifests/init.pp index d0212c64..456fe1a7 100644 --- a/puppet/modules/obfsproxy/manifests/init.pp +++ b/puppet/modules/obfsproxy/manifests/init.pp @@ -48,17 +48,17 @@ class obfsproxy (      mode   => '0700',    } -  package { "obfsproxy": +  package { 'obfsproxy':      ensure => present,    } -  service { "obfsproxy": +  service { 'obfsproxy':      ensure  => running,      status  => '/usr/sbin/service obfsproxy status                  | grep "is running"',      require => [ -      Package["obfsproxy"], -      File["/etc/init.d/obfsproxy"] ] +      Package['obfsproxy'], +      File['/etc/init.d/obfsproxy'] ]    } diff --git a/puppet/modules/site_obfsproxy/manifests/init.pp b/puppet/modules/site_obfsproxy/manifests/init.pp index 276b30db..6509fec8 100644 --- a/puppet/modules/site_obfsproxy/manifests/init.pp +++ b/puppet/modules/site_obfsproxy/manifests/init.pp @@ -4,12 +4,12 @@ class site_obfsproxy {    $transport = 'scramblesuit' -  $obfsproxy = hiera('obfsproxy') +  $obfsproxy    = hiera('obfsproxy')    $scramblesuit = $obfsproxy['scramblesuit'] -  $scram_pass = $scramblesuit['password'] -  $scram_port = $scramblesuit['port'] -  $dest_ip   = $obfsproxy['gateway_address'] -  $dest_port = '443' +  $scram_pass   = $scramblesuit['password'] +  $scram_port   = $scramblesuit['port'] +  $dest_ip      = $obfsproxy['gateway_address'] +  $dest_port    = '443'    include site_apt::preferences::twisted    include site_apt::preferences::obfsproxy | 
