2017-12-29 13:34:03 +00:00
|
|
|
[ -e /tmp/.failsafe ] && export FAILSAFE=1
|
|
|
|
|
2005-02-06 00:52:16 +00:00
|
|
|
[ -f /etc/banner ] && cat /etc/banner
|
2017-12-29 14:56:01 +00:00
|
|
|
[ -n "$FAILSAFE" ] && cat /etc/banner.failsafe
|
2017-12-29 13:34:03 +00:00
|
|
|
|
2022-02-05 17:38:53 +00:00
|
|
|
grep -Fsq '/ overlay ro,' /proc/mounts && {
|
2015-11-24 18:32:09 +00:00
|
|
|
echo 'Your JFFS2-partition seems full and overlayfs is mounted read-only.'
|
|
|
|
echo 'Please try to remove files from /overlay/upper/... and reboot!'
|
|
|
|
}
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2016-02-08 14:28:50 +00:00
|
|
|
export PATH="%PATH%"
|
2009-01-07 04:38:57 +00:00
|
|
|
export HOME=$(grep -e "^${USER:-root}:" /etc/passwd | cut -d ":" -f 6)
|
|
|
|
export HOME=${HOME:-/root}
|
2005-02-06 00:52:16 +00:00
|
|
|
export PS1='\u@\h:\w\$ '
|
2019-05-02 18:24:27 +00:00
|
|
|
export ENV=/etc/shinit
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2018-08-23 07:24:43 +00:00
|
|
|
case "$TERM" in
|
|
|
|
xterm*|rxvt*)
|
|
|
|
export PS1='\[\e]0;\u@\h: \w\a\]'$PS1
|
|
|
|
;;
|
|
|
|
esac
|
2016-05-12 16:24:49 +00:00
|
|
|
|
2015-09-16 08:32:13 +00:00
|
|
|
[ -n "$FAILSAFE" ] || {
|
|
|
|
for FILE in /etc/profile.d/*.sh; do
|
|
|
|
[ -e "$FILE" ] && . "$FILE"
|
|
|
|
done
|
|
|
|
unset FILE
|
|
|
|
}
|
2016-09-17 02:21:25 +00:00
|
|
|
|
2016-09-26 13:25:37 +00:00
|
|
|
if ( grep -qs '^root::' /etc/shadow && \
|
2016-09-17 02:21:25 +00:00
|
|
|
[ -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
|