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:14:37 +0100 |
commit | f844c6f6393ffb0d968915a5bb8d82ac3f9dbc44 (patch) | |
tree | def371c6cf3aa69d3c374614fbdb129e5f03afd2 | |
parent | a049d05cab22e7b3be8d6d021848436ac0173ce8 (diff) | |
download | vyatta-cfg-system-f844c6f6393ffb0d968915a5bb8d82ac3f9dbc44.tar.gz vyatta-cfg-system-f844c6f6393ffb0d968915a5bb8d82ac3f9dbc44.zip |
T444: missing keyword in ip l2tp del command.
-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 ed2baa8e..b4a149db 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/@) |