#!/bin/sh # # # 07-Dec-02 amo Modified for Slack-8.1 # # case "$1" in 'start') insmod soundcore insmod sound insmod esssolo1 # insmod i810_audio # # show that its running $0 status # ;; 'stop') # # rmmod i810_audio rmmod esssolo1 rmmod sound rmmod soundcore # # show that its stopped $0 status # ;; # 'status') lsmod ;; # 'play') # play /usr/share/sounds/phone.wav # # play /usr/share/licq/sounds/icq/Message.wav # ;; *) echo "Usage: /etc/rc.d/rc.sound { start | stop | status | play }" ;; esac # # End of file