]> git.pld-linux.org Git - projects/rc-scripts.git/blame - lib/ifdown-irda
If an iface type is specified NEVER override it
[projects/rc-scripts.git] / lib / ifdown-irda
CommitLineData
a6c22d3d
AM
1#!/bin/sh
2#
3# ifdown-irda - IrDA configuration script
fdc764ae 4# Copyright (C) 2001 Arkadiusz Miśkiewicz <misiek@pld-linux.org>
a6c22d3d
AM
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#
a6c22d3d
AM
20#
21PATH=/sbin:/usr/sbin:/bin:/usr/bin
22
f67ce454 23cd /lib/rc-scripts
a6c22d3d
AM
24. /etc/sysconfig/network
25. /etc/rc.d/init.d/functions
f67ce454 26. /lib/rc-scripts/functions.network
a6c22d3d
AM
27
28CONFIG=$1
29source_config
30
31if [ "foo$2" = "fooboot" ] && is_no "${ONBOOT}"; then
5e6dfc29 32 exit
a6c22d3d
AM
33fi
34
35. /etc/sysconfig/network
36
37# set all major variables
38setup_ip_param
39
40ip link set ${DEVICE} down
41ip addr flush dev ${DEVICE} 2>&1 | grep -v "Nothing to flush"
42
43PID=$(pidof irattach)
44for x in $PID; do
5e6dfc29
JR
45 if grep -q "$MODEMPORT" /proc/$x/cmdline; then
46 logger -p daemon.info -t ifdown-sl "signal TERM send to \"$(ps -o cmd=$x)\" - this should be irattach"
47 kill -TERM $x
48 PID=$x
49 fi
a6c22d3d 50done
5e6dfc29 51
a6c22d3d 52if [ -z "$PID" ]; then
5e6dfc29 53 exit 1
a6c22d3d
AM
54fi
55
56kill $PID > /dev/null 2>&1
57if [ ! -d /proc/$PID ]; then
f67ce454 58 /lib/rc-scripts/ifdown-post $1
5e6dfc29 59 exit 0
a6c22d3d
AM
60fi
61sleep 2
62if [ ! -d /proc/$PID ]; then
f67ce454 63 /lib/rc-scripts/ifdown-post $1
5e6dfc29 64 exit 0
a6c22d3d
AM
65fi
66
67kill -KILL $PID > /dev/null 2>&1
68if [ -d /proc/$PID ]; then
5e6dfc29 69 logger -p daemon.info -t ifdown-irda "$(nls 'ifdown-%s unable to kill %s for %s' "irda" "irattach" "$DEVICE")" &
a6c22d3d 70else
f67ce454 71 /lib/rc-scripts/ifdown-post $1
a6c22d3d
AM
72fi
73
74exit 1
This page took 0.090917 seconds and 4 git commands to generate.