diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-06-19 19:25:05 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-06-19 19:25:05 +0000 |
commit | 26acde461ac341a48e2798568582a89797d9b0c7 (patch) | |
tree | 5fbc67b995508684f1c639b15784d7bb39b847c5 /daemons/rc.sh | |
parent | d0c311230e3bc0f82a2f39c331e71103ee0a86ae (diff) |
Print date before running fsck. Comment out pty permission check.
Diffstat (limited to 'daemons/rc.sh')
-rw-r--r-- | daemons/rc.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/daemons/rc.sh b/daemons/rc.sh index 63ced2d0..cbb6bfe8 100644 --- a/daemons/rc.sh +++ b/daemons/rc.sh @@ -8,6 +8,7 @@ then elif [ $1x = autobootx ] then echo Automatic boot in progress... + date # Find the filesystem by a kludge, and extract the root device name. fsargs=`ps -MaxHww --fmt=%command | grep exec-server-task | head -1` @@ -60,9 +61,9 @@ rm -f /var/lock/LCK.* (cd /var/run && { rm -rf -- *; cp /dev/null utmp; chmod 644 utmp; }) echo done -echo -n restoring pty permissions... -chmod 666 /dev/tty[pqrs]* -echo done +#echo -n restoring pty permissions... +#chmod 666 /dev/tty[pqrs]* +#echo done #echo -n updating /etc/motd... #echo GNU\'s Not Unix Version `uname --release` > /tmp/newmotd |