QoS-Graphen wieder eingebaut.

usbutils und which Paket gemacht.
unbenoetigte Apache-Module werden nicht geladen.
Net-SSLeay gefixt - DynDNS braucht das.
Alsa-Module werden geladen.
Java-paket verkleinert.
Sambactrl gefixt.


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@652 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2007-06-30 17:21:34 +00:00
parent 99e6df8e99
commit 51f3b7f5af
21 changed files with 896 additions and 662 deletions

View File

@@ -10,13 +10,20 @@
. $rc_functions
case "$1" in
start)
boot_mesg "Starting ALSA..."
modprobe snd_pcm_oss >/dev/null 2>&1 || failed=1
modprobe snd_mixer_oss >/dev/null 2>&1 || failed=1
(exit ${failed})
evaluate_retval
;;
stop)
boot_mesg "Stopping ALSA... Saving volumes..."
loadproc /usr/sbin/alsactl store
;;
*)
echo "Usage: $0 stop"
echo "Usage: $0 (start|stop)"
exit 1
;;
esac