mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
6 lines
129 B
Plaintext
6 lines
129 B
Plaintext
# Detect interactive logins and display the shell
|
|
if [ -n "${SSH_TTY}" -o "${TERM}" = "cons25" ]; then
|
|
/etc/rc.initial
|
|
exit
|
|
fi
|