diff options
author | varac <varacanero@zeromail.org> | 2013-02-21 16:11:14 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-02-21 16:11:14 +0100 |
commit | 21b197953d11d69d14789bc284d72d9c5025dcb4 (patch) | |
tree | 65cc557ad81751e8ed63c6276696b2757355089d | |
parent | 2acaf6e3aa171e22cc28141027ef1b09f335514b (diff) |
linted
-rw-r--r-- | puppet/modules/site_openvpn/manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/puppet/modules/site_openvpn/manifests/init.pp b/puppet/modules/site_openvpn/manifests/init.pp index e3d2a9af..165ba96e 100644 --- a/puppet/modules/site_openvpn/manifests/init.pp +++ b/puppet/modules/site_openvpn/manifests/init.pp @@ -38,7 +38,7 @@ class site_openvpn { # add second IP on given interface file { '/usr/local/bin/leap_add_second_ip.sh': content => "#!/bin/sh -ip addr show dev $interface | grep -q ${openvpn_gateway_address}/24 || ip addr add ${openvpn_gateway_address}/24 dev $interface +ip addr show dev ${interface} | grep -q ${openvpn_gateway_address}/24 || ip addr add ${openvpn_gateway_address}/24 dev ${interface} /bin/echo 1 > /proc/sys/net/ipv4/ip_forward ", mode => '0755', @@ -49,7 +49,7 @@ ip addr show dev $interface | grep -q ${openvpn_gateway_address}/24 || ip addr a } cron { 'leap_add_second_ip.sh': - command => "/usr/local/bin/leap_add_second_ip.sh", + command => '/usr/local/bin/leap_add_second_ip.sh', user => 'root', special => 'reboot', } |