]> TLD Linux GIT Repositories - rc-scripts.git/blob - lib/tnldown
- disable lock checks (happens on LUKS2 and fails during system boot)
[rc-scripts.git] / lib / tnldown
1 #!/bin/sh
2 #
3 #    tnldown - tunnel configuration script
4 #    Copyright (C) 1999, 2000 Arkadiusz Miƛkiewicz <misiek@pld-linux.org>
5 #
6 #    This program is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    This program is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with this program; if not, write to the Free Software
18 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 #
20 #
21
22 . /etc/sysconfig/network
23 . /etc/rc.d/init.d/functions
24 . /lib/rc-scripts/functions.network
25
26 DEV=$1
27
28 [ -z "$DEV" ] && {
29         nls "Usage: %s <device name>" "tnldown" >&2
30         exit 1
31 }
32
33 TNLCONFIGS=$(LC_ALL=C ls /etc/sysconfig/interfaces/tnlcfg-* 2>/dev/null | grep -vE '~$')
34 TNLCONFIGS=$(grep -LE '^#!' $TNLCONFIGS)
35 CONFIG=$(grep -lE "^DEVICE=[\"\']*$DEV[\"\']*\$" $TNLCONFIGS)
36
37 if [ -z "$CONFIG" ]; then
38         CONFIG="$DEV"
39 fi
40
41 if false; then
42         [ -f "/etc/sysconfig/interfaces/$CONFIG" ] || CONFIG=tnlcfg-$CONFIG
43         [ -f "/etc/sysconfig/interfaces/$CONFIG" ] || {
44                 echo "usage: tnldown <device name>" >&2
45                 exit 1
46         }
47 fi
48
49 source_config
50
51 case "${MODE}" in
52   sit|four)
53         is_no "${IPV6_NETWORKING}" && exit 0
54         is_no "${IPV6_TUNNELCONFIG}" && exit 0
55         ;;
56   ipip)
57         is_no "${IPV4_NETWORKING}" && exit 0
58         ;;
59   gre)
60         is_no "${IPV4_NETWORKING}" && exit 0
61         ;;
62   ipxip|ipipx)
63         is_no "${IPX}" && exit 0
64         ;;
65 esac
66
67 RESULT=0
68
69 case "${MODE}" in
70   ipip|sit|gre)
71         ip link set ${DEVICE} down
72         ip tunnel del ${DEVICE}
73         RESULT=$?
74         ;;
75   four)
76         ip link set ${DEVICE} down
77         fourcfg del ${DEVICE}
78         RESULT=$?
79         ;;
80   ipxip|ipipx)
81         ;;
82 esac
83
84 exit $RESULT