Debuginformationen aus den CGIs entfernt

Hoffentlich die letzten Config Types bereinigt
Samba und SSHd init Skripte angepasst
Pakfire CGI optisch angepasst


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@779 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
maniacikarus
2007-08-17 16:00:01 +00:00
parent 50418f3877
commit cb5e9c6c64
36 changed files with 87 additions and 90 deletions

View File

@@ -21,10 +21,10 @@ case "$1" in
stop)
boot_mesg "Stopping smbd..."
killproc /usr/sbin/smbd
killproc -p /var/run/smbd.pid /usr/sbin/smbd
boot_mesg "Stopping nmbd..."
killproc /usr/sbin/nmbd
killproc -p /var/run/nmbd.pid /usr/sbin/nmbd
;;
reload)
@@ -37,7 +37,7 @@ case "$1" in
restart)
$0 stop
sleep 5
sleep 3
$0 start
;;

View File

@@ -15,7 +15,7 @@ case "$1" in
boot_mesg "Starting SSH Server..."
# Also prevent ssh from being killed by out of memory conditions
loadproc /usr/sbin/sshd
sleep 1
sleep 3
echo "-16" >/proc/`cat /var/run/sshd.pid`/oom_adj
;;