diff options
author | elijah <elijah@riseup.net> | 2014-07-01 16:06:22 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-07-01 16:06:22 -0700 |
commit | b2f184c027c166c86c2c2e434389542e42bd9304 (patch) | |
tree | 3c7e703452da8c4caca3469f08c63f4e3041b71c /puppet/modules/site_obfsproxy | |
parent | 82dbbf823d6637082f63e55ed1d2f57a11e0d481 (diff) | |
parent | 7e278f92f34e3809d380be724f0c306430791b10 (diff) |
Merge branch 'obfsproxy' into develop
Diffstat (limited to 'puppet/modules/site_obfsproxy')
-rw-r--r-- | puppet/modules/site_obfsproxy/README | 0 | ||||
-rw-r--r-- | puppet/modules/site_obfsproxy/manifests/init.pp | 39 |
2 files changed, 39 insertions, 0 deletions
diff --git a/puppet/modules/site_obfsproxy/README b/puppet/modules/site_obfsproxy/README new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/puppet/modules/site_obfsproxy/README diff --git a/puppet/modules/site_obfsproxy/manifests/init.pp b/puppet/modules/site_obfsproxy/manifests/init.pp new file mode 100644 index 00000000..40b7fba8 --- /dev/null +++ b/puppet/modules/site_obfsproxy/manifests/init.pp @@ -0,0 +1,39 @@ +class site_obfsproxy { + tag 'leap_service' + Class['site_config::default'] -> Class['site_obfsproxy'] + + $transport = 'scramblesuit' + + $obfsproxy = hiera('obfsproxy') + $scramblesuit = $obfsproxy['scramblesuit'] + $scram_pass = $scramblesuit['password'] + $scram_port = $scramblesuit['port'] + $dest_ip = $obfsproxy['gateway_address'] + $dest_port = '443' + + if $::services =~ /\bopenvpn\b/ { + $openvpn = hiera('openvpn') + $bind_address = $openvpn['gateway_address'] + } + elsif $::services =~ /\bobfsproxy\b/ { + $bind_address = hiera('ip_address') + } + + include site_apt::preferences::twisted + include site_apt::preferences::obfsproxy + + class { 'obfsproxy': + transport => $transport, + bind_address => $bind_address, + port => $scram_port, + param => $scram_pass, + dest_ip => $dest_ip, + dest_port => $dest_port, + } + + include site_shorewall::obfsproxy + +} + + + |