blob: d7b7884633cc513d73c960e33332f7325fc0355f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
#
### BEGIN INIT INFO
# Provides: soundserver
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: start sound_server daemon
### END INIT INFO
if [ -x /usr/bin/sound_server ]; then
/usr/bin/sound_server -S&
fi
|