X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage5%2Fbootscripts%2Fpulseaudio;fp=stage5%2Fbootscripts%2Fpulseaudio;h=0000000000000000000000000000000000000000;hb=c62ddc9c6e3f2cd5610f55d3a57dd1938a6f614f;hp=e0953f6780aa003e57e79a285aab45fd2e8c6d3c;hpb=48619411231621a6b9289bbbad75c5fa7f91dcfe;p=hvlinux.git diff --git a/stage5/bootscripts/pulseaudio b/stage5/bootscripts/pulseaudio deleted file mode 100755 index e0953f6..0000000 --- a/stage5/bootscripts/pulseaudio +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh - -# pulseaudio - -# Source functions library -source /etc/rc.d/init.d/functions - -log_script_name "$0 $*" - -PULSE_SERVER="tcp:via:16002" -ESPEAKER="via:16001" - -# See how we were called. -case "$1" in - start) - cmd_run_log_box_warn "PulseAudio sound server start" loadproc pulseaudio - ;; - - stop) - cmd_run_log_box_warn "PulseAudio sound server stop" killproc pulseaudio - ;; - - restart) - $0 stop - sleep 1 - $0 start - ;; - - status) - statusproc pulseaudio - ;; - - *) - echo "Usage: $0 {start|stop|restart|status}" - exit ${EXIT_CODE_FAILURE} - ;; -esac - -exit $?