blob: 964947376e04dc2f877be8d732d5c3ae9e62f7f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/bin/sh
#
# pulseaudio This shell script starts and stops pulseaudio.
#
# chkconfig: 345 90 40
# description: Pulseaudio manages the sound input/output
# processname: pulseaudio
# Source function library.
#. /etc/rc.d/init.d/functions
RETVAL=0
prog="pulseaudio"
start() {
echo -n "Starting audio server: "
# FIXME once alsa/shm permissions have been fixed, supply --system
start-stop-daemon -S -x /usr/bin/pulseaudio -- --no-cpu-limit --resample-method=trivial -D -nF /etc/pulse/session
if [ $? = 0 ]; then
echo "$prog (warning ignores)." # FIXME remove comment on warning
else
echo "(failed.)"
fi
}
stop() {
echo -n "Stopping audio server: "
start-stop-daemon -K -x /usr/bin/pulseaudio
echo "pulseaudio."
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
restart|reload)
stop
start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $RETVAL
|