blob: f928e3fe63129af9488a59a7789d57794e8b8706 (
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
|
#!/bin/sh
#PKG pulseaudio
#INIT 60
. /etc/rc.conf
case $1 in
autostop) ;;
autostart)
test x"${pulseaudio:-NO}" = x"NO" && exit 0
exec sh $0 start
;;
start)
if [ ! -d /var/run/pulse ]; then
mkdir -p /var/run/pulse/ && chown -R pulse.pulse /var/run/pulse && chmod 750 /var/run/pulse
fi
if [ ! -d /var/lib/pulse ]; then
mkdir -p /var/lib/pulse/.pulse-cookie && chown -R pulse.pulse /var/lib/pulse && chmod 750 /var/lib/pulse
fi
/usr/bin/pulseaudio $pulseaudio_flags
;;
stop)
kill $(pgrep -f /usr/bin/pulseaudio)
;;
restart)
sh $0 stop
sh $0 start
;;
*)
echo "usage: $0 {start | stop | restart}"
exit 1
esac
exit $?
|