diff options
Diffstat (limited to 'initscripts/initscripts-1.0-r0/bootmisc.sh')
-rw-r--r-- | initscripts/initscripts-1.0-r0/bootmisc.sh | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/initscripts/initscripts-1.0-r0/bootmisc.sh b/initscripts/initscripts-1.0-r0/bootmisc.sh deleted file mode 100644 index 74d27f513f..0000000000 --- a/initscripts/initscripts-1.0-r0/bootmisc.sh +++ /dev/null @@ -1,50 +0,0 @@ -# -# bootmisc.sh Miscellaneous things to be done during bootup. -# - -. /etc/default/rcS -# -# Put a nologin file in /etc to prevent people from logging in before -# system startup is complete. -# -if test "$DELAYLOGIN" = yes -then - echo "System bootup in progress - please wait" > /etc/nologin - cp /etc/nologin /etc/nologin.boot -fi - -# -# Set pseudo-terminal access permissions. -# -if ( ! grep -q devfs /proc/mounts ) && test -c /dev/ttyp0 -then - chmod 666 /dev/tty[p-za-e][0-9a-f] - chown root:tty /dev/tty[p-za-e][0-9a-f] -fi - -# -# Update /etc/motd. -# -if test "$EDITMOTD" != no -then - uname -a > /etc/motd.tmp - sed 1d /etc/motd >> /etc/motd.tmp - mv /etc/motd.tmp /etc/motd -fi - -# -# This is as good a place as any for a sanity check -# /tmp should be a symlink to /var/tmp to cut down on the number -# of mounted ramdisks. -if test ! -L /tmp && test -d /var/tmp -then - rm -rf /tmp - ln -sf /var/tmp tmp -fi - -# -# Update dynamic library cache -# -/sbin/ldconfig - -: exit 0 |