summaryrefslogtreecommitdiff
path: root/scripts/vyatta-encapsulation
blob: 8c64341e77df9f2b841477414852a471ff42e407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

list="gre gre-bridge ipip sit ipip6 ip6ip6"
if [[ `dpkg -l | grep "vyatta-nhrp" | awk '{print $1}'` = "ii" ]]; then tmp="gre-multipoint"; fi
full_list="${list} ${tmp}"
if [[ -n "$1" ]]; then
	for f in ${full_list}; do if [[ "$1" = "$f" ]]; then exit 0; fi; done
	echo "Must be (${full_list})"
	exit 1;
else
	echo ${full_list}
fi