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