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