blob: f62343a027a0d3a938bd8332953637737d40d347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
multi:
type: txt
help: Set interface name
syntax:expression: exec " \
if [ -z \"`ip addr | grep $VAR(@) `\" ]; then \
echo ethernet interface $VAR(@) doesn\\'t exist on this system ; \
exit 1 ; \
fi ; "
create: ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \
-c "router ripng" \
-c "network $VAR(@)"
delete: ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \
-c "router ripng" \
-c "no network $VAR(@)" "
allowed: local -a array;
array=( /sys/class/net/{eth,vmnet}* ) ;
echo -n ${array[@]##*/}
|