diff options
Diffstat (limited to 'templates/protocols/rip/passive-interface/node.def')
-rw-r--r-- | templates/protocols/rip/passive-interface/node.def | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/protocols/rip/passive-interface/node.def b/templates/protocols/rip/passive-interface/node.def index b3674afe..a3a17f12 100644 --- a/templates/protocols/rip/passive-interface/node.def +++ b/templates/protocols/rip/passive-interface/node.def @@ -7,15 +7,15 @@ syntax:expression: exec " \ exit 1 ; \ fi ; " create: if [ x$VAR(x) == xdefault ] - then vyatta-vtysh -c "configure terminal" -c "router rip" \ + then vtysh -c "configure terminal" -c "router rip" \ -c "passive-interface default" - else vyatta-vtysh -c "configure terminal" -c "router rip" \ + else vtysh -c "configure terminal" -c "router rip" \ -c "passive-interface $VAR(@)" fi delete: if [ x$VAR(x) == xdefault ] - then vyatta-vtysh -c "configure terminal" -c "router rip" \ + then vtysh -c "configure terminal" -c "router rip" \ -c "no passive-interface default" - else vyatta-vtysh -c "configure terminal" -c "router rip" \ + else vtysh -c "configure terminal" -c "router rip" \ -c "no passive-interface $VAR(@)" fi allowed: ${vyatta_sbindir}/vyatta-interfaces.pl --show all |