diff options
Diffstat (limited to 'init-sh/level1.sh')
-rwxr-xr-x | init-sh/level1.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/init-sh/level1.sh b/init-sh/level1.sh index a7ce877..571f470 100755 --- a/init-sh/level1.sh +++ b/init-sh/level1.sh @@ -55,10 +55,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=1 echo "Setting secure level variable to 1 :" @@ -80,6 +76,13 @@ echo "Adding system users to specific groups :" /etc/security/msec/init-sh/grpuser.sh --refresh echo -e "done.\n" +# 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." |