Skip to content
Snippets Groups Projects
Commit 63bd73a5 authored by John Crispin's avatar John Crispin
Browse files

base-files: remind users to set root password


print a warning when a shell spawns, telling users to set a root password.

Signed-off-by: default avatarJohn Crispin <john@phrozen.org>
parent 0b3a64f8
No related branches found
No related tags found
No related merge requests found
......@@ -29,3 +29,16 @@ alias ll='ls -alF --color=auto'
done
unset FILE
}
if ( grep -qsE '^root:[!x]?:' /etc/shadow && \
grep -qsE '^root:[!x]?:' /etc/passwd && \
[ -z "$FAILSAFE" ] )
then
cat << EOF
=== WARNING! =====================================
There is no root password defined on this device!
Use the "passwd" command to set up a new password
in order to prevent unauthorized SSH logins.
--------------------------------------------------
EOF
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment