diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2007-12-31 15:12:55 -0800 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2007-12-31 15:12:55 -0800 |
commit | d3d62b3c5be34576d339f5a7e7a4b3a304dfd4c6 (patch) | |
tree | 671d675660e9695388ba58691394670060e577a0 /templates | |
parent | 18e07e875f1802324fd1ce23716936d45029106c (diff) | |
download | vyatta-cfg-vpn-d3d62b3c5be34576d339f5a7e7a4b3a304dfd4c6.tar.gz vyatta-cfg-vpn-d3d62b3c5be34576d339f5a7e7a4b3a304dfd4c6.zip |
interoperate with remote access vpn (if available).
Diffstat (limited to 'templates')
-rw-r--r-- | templates/vpn/node.def | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/templates/vpn/node.def b/templates/vpn/node.def index 5880e47..27c9eb7 100644 --- a/templates/vpn/node.def +++ b/templates/vpn/node.def @@ -1,2 +1,11 @@ help: "Configure VPN" -end: "sudo /opt/vyatta/sbin/vpn-config.pl --config_file='/etc/ipsec.conf' --secrets_file='/etc/ipsec.secrets' --init_script='/etc/init.d/ipsec' " +end: "sudo /opt/vyatta/sbin/vpn-config.pl \ + --config_file='/etc/ipsec.conf' \ + --secrets_file='/etc/ipsec.secrets' \ + --init_script='/etc/init.d/ipsec' && \ + if [ -x /opt/vyatta/sbin/vyatta-update-l2tp.pl ]; then \ + sudo /opt/vyatta/sbin/vyatta-update-l2tp.pl; \ + fi && \ + if [ -x /opt/vyatta/sbin/vyatta-update-pptp.pl ]; then \ + sudo /opt/vyatta/sbin/vyatta-update-pptp.pl; \ + fi" |