diff options
author | Daniil Baturin <daniil@baturin.org> | 2017-11-04 04:14:37 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-11-04 04:17:27 +0100 |
commit | 8917a36fc2384efc4fbe41ca4578d7f4191bf6d5 (patch) | |
tree | 0da11bc66161cb4906ba0a59f9964f536ec02b03 /templates/interfaces | |
parent | e405a05d0a255a9f4d1d75b0462fae8e1756703e (diff) | |
download | vyatta-cfg-system-8917a36fc2384efc4fbe41ca4578d7f4191bf6d5.tar.gz vyatta-cfg-system-8917a36fc2384efc4fbe41ca4578d7f4191bf6d5.zip |
T444: missing keyword in ip l2tp del command.
Diffstat (limited to 'templates/interfaces')
-rw-r--r-- | templates/interfaces/l2tpv3/node.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/interfaces/l2tpv3/node.def b/templates/interfaces/l2tpv3/node.def index 03c677ad..973256bf 100644 --- a/templates/interfaces/l2tpv3/node.def +++ b/templates/interfaces/l2tpv3/node.def @@ -49,7 +49,7 @@ create: delete: ip link set $VAR(@) down if [ -n "$VAR(./tunnel-id/@)" ] && [ -n "$VAR(./session-id/@)" ] ; then - ip l2tp del session $VAR(./tunnel-id/@) session_id $VAR(./session-id/@) + ip l2tp del session tunnel_id $VAR(./tunnel-id/@) session_id $VAR(./session-id/@) fi if [ -n "$VAR(./tunnel-id/@)" ] ; then ip l2tp del tunnel tunnel_id $VAR(./tunnel-id/@) |