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 19 20:01:47 UTC 2012
[aur-mirror.git]
/
icecream
/
icecream-daemon
blob
a2dfdf55417ab3185f3b0a95bc6e0511bc986d17
1
#!/bin/bash
2
3
.
/
etc
/
rc.conf
4
.
/
etc
/
rc.d
/
functions
5
6
7
case
"
$1
"
in
8
start
)
9
stat_busy
"Starting Icecream Daemon"
10
/
opt
/
icecream
/
sbin
/
iceccd
-d
&>/
dev
/
null
11
if
[
$?
-gt
0
];
then
12
stat_fail
13
else
14
add_daemon icecream
15
stat_done
16
fi
17
;;
18
stop
)
19
stat_busy
"Stopping Icecream Daemon"
20
killall
/
opt
/
icecream
/
sbin
/
iceccd
> /
dev
/
null
2
>&
1
|| true
21
if
[
$?
-gt
0
];
then
22
stat_fail
23
else
24
rm_daemon icecream
25
stat_done
26
fi
27
;;
28
restart
)
29
$0
stop
30
sleep
1
31
$0
start
32
;;
33
*)
34
echo
"usage:
$0
{start|stop|restart}"
35
esac
36
exit
0
37