diff options
author | Yoann Vandoorselaere <yoann@mandriva.com> | 1999-12-16 17:48:54 +0000 |
---|---|---|
committer | Yoann Vandoorselaere <yoann@mandriva.com> | 1999-12-16 17:48:54 +0000 |
commit | ed13442ca9484b8001f062de5b2c4cc7f9530ef4 (patch) | |
tree | 4d20dfaf45c18d82b83d26e822d476711ab81bac /init-sh/level3.sh | |
parent | f3eab9ee9a13b620d4d3eb27d72efd43e9158d21 (diff) | |
download | msec-ed13442ca9484b8001f062de5b2c4cc7f9530ef4.tar msec-ed13442ca9484b8001f062de5b2c4cc7f9530ef4.tar.gz msec-ed13442ca9484b8001f062de5b2c4cc7f9530ef4.tar.bz2 msec-ed13442ca9484b8001f062de5b2c4cc7f9530ef4.tar.xz msec-ed13442ca9484b8001f062de5b2c4cc7f9530ef4.zip |
*** empty log message ***
Diffstat (limited to 'init-sh/level3.sh')
-rwxr-xr-x | init-sh/level3.sh | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/init-sh/level3.sh b/init-sh/level3.sh index acf8483..8027034 100755 --- a/init-sh/level3.sh +++ b/init-sh/level3.sh @@ -64,10 +64,6 @@ echo -n "Running lilo to record new config : " /sbin/lilo >& /dev/null echo -e "done.\n" -# /etc/inittab -echo "Disabling direct console access : " -AddRules "1:2345:respawn:/sbin/mingetty tty1" /etc/inittab - # /etc/profile export SECURE_LEVEL=3 echo "Setting secure level variable to 3 :" @@ -77,3 +73,12 @@ AddRules "umask 022" /etc/profile echo "Adding a \"normal\" PATH variable : " AddRules "PATH=\$PATH:/usr/X11R6/bin:/usr/games" /etc/profile quiet AddRules "export PATH SECURE_LEVEL" /etc/profile + +# Do not boot on a shell +echo -n "Setting up inittab to ask a passwd on boot : " +tmpfile=`mktemp /tmp/secure.XXXXXX` +cp /etc/inittab ${tmpfile} +cat ${tmpfile} | sed s'/\/bin\/bash --login/\/sbin\/mingetty tty1/' > /etc/inittab +rm -f ${tmpfile} +echo "done." + |