Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /etc/rcS.d/ drwxr-xr-x |
Viewing file: S80bootmisc.sh (1.73 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) | #!/bin/sh ### BEGIN INIT INFO # Provides: bootmisc # Required-Start: $local_fs hostname $remote_fs # Required-Stop: $local_fs # Default-Start: S # Default-Stop: # Short-Description: Miscellaneous things to be done during bootup. # Description: ### END INIT INFO PATH=/usr/sbin:/usr/bin:/sbin:/bin [ "$DELAYLOGIN" ] || DELAYLOGIN=yes . /lib/init/vars.sh do_start () { # # If login delaying is enabled then create the flag file # which prevents logins before startup is complete # case "$DELAYLOGIN" in Y*|y*) echo "System bootup in progress - please wait" > /var/lib/initscripts/nologin ;; esac # Create /var/run/utmp so we can login. : > /var/run/utmp if grep -q ^utmp: /etc/group then chmod 664 /var/run/utmp chgrp utmp /var/run/utmp fi # Set pseudo-terminal access permissions. if [ ! -e /dev/.devfsd ] && [ -c /dev/ttyp0 ] then chmod -f 666 /dev/tty[p-za-e][0-9a-f] chown -f root:tty /dev/tty[p-za-e][0-9a-f] fi # Update motd uname -snrvm > /var/run/motd [ -f /etc/motd.tail ] && cat /etc/motd.tail >> /var/run/motd # Save kernel messages in /var/log/dmesg if which dmesg >/dev/null 2>&1 then savelog -q -p -c 5 /var/log/dmesg dmesg -s 524288 > /var/log/dmesg chgrp adm /var/log/dmesg || : elif [ -c /dev/klog ] then savelog -q -p -c 5 /var/log/dmesg dd if=/dev/klog of=/var/log/dmesg & sleep 1 kill $! [ -f /var/log/dmesg ] && { chgrp adm /var/log/dmesg || : ; } fi # Remove bootclean's flag files. # Don't run bootclean again after this! rm -f /tmp/.clean } case "$1" in start|"") do_start ;; restart|reload|force-reload) echo "Error: argument '$1' not supported" >&2 exit 3 ;; stop) # No-op ;; *) echo "Usage: bootmisc.sh [start|stop]" >&2 exit 3 ;; esac : |
:: Command execute :: | |
--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0423 ]-- |