multi: type: txt help: Set to suppress routing updates on an interface syntax:expression: exec "${vyatta_sbindir}/vyatta-interfaces.pl --check $VAR(@)" allowed: ${vyatta_sbindir}/vyatta-interfaces.pl --show all update: if [ -z $VAR(@) ] then vyatta-vtysh -c "configure terminal" -c "router ospf" \ -c "passive-interface default"; else vyatta-vtysh -c "configure terminal" -c "router ospf" \ -c "passive-interface $VAR(@)" fi delete: if [ -z $VAR(@) ] then vyatta-vtysh -c "configure terminal" -c "router ospf" \ -c "no passive-interface default" else vyatta-vtysh -c "configure terminal" -c "router ospf" \ -c "no passive-interface $VAR(@)" fi