diff options
author | jkh <jkh@FreeBSD.org> | 1995-11-30 02:28:37 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-11-30 02:28:37 +0000 |
commit | 25c3e86bc02d9bc8e89026926cccd6e70bd135a9 (patch) | |
tree | c0ea7265134c002f3f1c24a76928b205abe49425 /etc/root/dot.login | |
parent | 0a878a8fe65a220a36ed5df8e092faa3851aad20 (diff) | |
download | FreeBSD-src-25c3e86bc02d9bc8e89026926cccd6e70bd135a9.zip FreeBSD-src-25c3e86bc02d9bc8e89026926cccd6e70bd135a9.tar.gz |
Revamp root's dotfiles.
Submitted by: Patrick Hausen + mods by me
Diffstat (limited to 'etc/root/dot.login')
-rw-r--r-- | etc/root/dot.login | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/etc/root/dot.login b/etc/root/dot.login index 5966044..21d3df0 100644 --- a/etc/root/dot.login +++ b/etc/root/dot.login @@ -1,14 +1,21 @@ -# $Id: dot.login,v 1.7 1995/06/29 06:30:43 joerg Exp $ +# csh .login file # -tset -Q \?$TERM -stty crt erase ^H -umask 2 -# plain csh is too stupid to get any information on ARGV[0] back -if (! $?tcsh) then - echo "Don't login as root, login as yourself and use the 'su' command" -else - # for tcsh, check if we have been invoked by an "su -" - if ("$0" != "-su") \ - echo "Don't login as root, login as yourself and use the 'su' command" -endif +stty crt erase +# PATH und MANPATH Grundeinstellung +set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/bin /usr/X11R6/bin $HOME/bin) +setenv MANPATH "/usr/share/man:/usr/X11R6/man:/usr/local/man" + +# Interviews settings +setenv CPU "FREEBSD" +set path = ($path /usr/local/interviews/bin/$CPU) +setenv MANPATH "${MANPATH}:/usr/local/interviews/man" + +# 8-bit locale (germany) +#setenv ENABLE_STARTUP_LOCALE +#setenv LANG de_DE.ISO8859-1 + +# A rightous umask +umask 22 + +/usr/games/fortune |