blob: e55355f4d7fd64d5fdd23e223a51e83f1624f7bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
multi:
type: txt
help: Set interface name
allowed: ${vyatta_sbindir}/vyatta-interfaces.pl --show all
commit:expression: exec " \
if [ -z \"`ip addr | grep $VAR(@) `\" ]; then \
echo interface $VAR(@) doesn\\'t exist on this system ; \
exit 1 ; \
fi ; "
create: vyatta-vtysh -c "configure terminal" -c "router ripng" \
-c "network $VAR(@)"
delete: vyatta-vtysh -c "configure terminal" -c "router ripng" \
-c "no network $VAR(@)"
|