Foomatic ist gegen die libtiff gelinkt.

Der Dump der Maildatenbank muss die Datenbank noch anlegen.
Die Adresse der server.met soll nicht funktionieren. Ausgetauscht.
Initscript fuer Asterisk geschrieben.
Der Pakfire macht ein Update, wenn sich die Maschine einwaehlt (Ohne --force).
Die Beep-Melodie ein bisschen schneller gemacht, weil der rowie die nicht mag. ;)
Das applejuice-Paket startet nun den Client von allein.
...und somit wird es dann bald Zeit fuer einen Release Candidate...


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@962 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2007-10-13 17:10:12 +00:00
parent 8a5898e747
commit 9bfa4a36ab
16 changed files with 101 additions and 5 deletions

View File

@@ -0,0 +1,52 @@
#!/bin/sh
########################################################################
# Begin $rc_base/init.d/asterisk
#
# Description : Asterisk Script
#
# Authors : Michael Tremer (mitch@ipfire.org)
#
# Version : 01.00
#
# Notes :
#
########################################################################
. /etc/sysconfig/rc
. ${rc_functions}
case "${1}" in
start)
boot_mesg "Starting Asterisk PBX..."
loadproc /usr/sbin/asterisk
;;
stop)
boot_mesg "Stopping Asterisk PBX..."
asterisk -rx "stop gracefully" >/dev/null 2>&1
evaluate_retval
;;
reload)
boot_mesg "Reloading Asterisk PBX..."
asterisk -rx "reload" >/dev/null 2>&1
evaluate_retval
;;
restart)
${0} stop
sleep 1
${0} start
;;
status)
statusproc /usr/sbin/asterisk
;;
*)
echo "Usage: ${0} {start|stop|reload|restart|status}"
exit 1
;;
esac
# End $rc_base/init.d/asterisk

View File

@@ -15,7 +15,7 @@
. /etc/sysconfig/rc
. ${rc_functions}
LENGTH=80
LENGTH=40
play () {

View File

@@ -0,0 +1,3 @@
#!/bin/sh
/opt/pakfire/pakfire update >/dev/null 2>&1