repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git]
/
intel-536ep-utils
/
intel-536EP.rc.d
blob
5c13b9730f426387710c6a3442313fd8a51f1b60
1
#!/bin/bash
2
3
.
/
etc
/
rc.conf
4
.
/
etc
/
rc.d
/
functions
5
6
case
"
$1
"
in
7
start
)
8
stat_busy
"Loading Intel Modem Driver"
9
hamregistry
&
10
if
[
$?
-gt
0
];
then
11
stat_fail
12
else
13
add_daemon intel-536EP
14
stat_done
15
fi
16
;;
17
stop
)
18
stat_busy
"Stopping Intel Modem Driver"
19
killall
-9
hamregistry
20
if
[
$?
-gt
0
];
then
21
stat_fail
22
else
23
rm_daemon intel-536EP
24
stat_done
25
fi
26
;;
27
restart
)
28
$0
stop
29
sleep
1
30
$0
start
31
;;
32
*)
33
echo
"Usage
$0
{start|stop|restart}"
34
;;
35
esac