blob: 80e4f4e2412fac13c2c616bb1469b6e402f36625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
tag:
type: txt
help: Set zone name
syntax:expression: exec " \
if [ `echo -n '$VAR(@)' | wc -c` -gt 20 ]; then \
echo Zone name must be 20 characters or less; \
exit 1 ; \
fi ; "
syntax:expression: pattern $VAR(@) "^[^-]" ; "Zone name cannot start with \"-\""
syntax:expression: pattern $VAR(@) "^[^;]*$" ; "Zone name cannot contain ';'"
create:
if ! /opt/vyatta/sbin/vyatta-zone.pl \
--action=add-zone \
--zone-name="$VAR(@)"; then
exit 1
fi
delete:
if ! /opt/vyatta/sbin/vyatta-zone.pl \
--action=delete-zone \
--zone-name="$VAR(@)"; then
exit 1
fi
|