--- etc/Makefile +++ etc/Makefile @@ -49,10 +49,12 @@ remote \ rpc \ services \ + sh.shrc \ shells \ sysctl.conf \ syslog.conf \ - termcap.small + termcap.small \ + tmpdirrc \ .if exists(${.CURDIR}/etc.${MACHINE}/ttys) BIN1+= etc.${MACHINE}/ttys --- etc/csh.cshrc +++ etc/csh.cshrc @@ -1,3 +1,6 @@ # $FreeBSD: releng/11.1/etc/csh.cshrc 50472 1999-08-27 23:37:10Z peter $ # # System-wide .cshrc file for csh(1). + +set history=511 +alias tset 'set noglob histchars=""; eval `/usr/bin/tset -s \!*`; unset noglob histchars' --- etc/csh.login +++ etc/csh.login @@ -4,12 +4,19 @@ # Uncomment this to give you the default 4.2 behavior, where disk # information is shown in K-Blocks # setenv BLOCKSIZE K +setenv TMPDIR `/usr/bin/mkinittmpdir` +setenv MANPATH `/usr/bin/manpath` +setenv INFOPATH '/usr/share/info:/usr/local/info:/compat/linux/usr/info' +setenv HTTP_AUTH 'basic:*' +setenv CVSROOT /home/CVShome +setenv FONTSERVER xfs:7100 + # # For the setting of languages and character sets please see # login.conf(5) and in particular the charset and lang options. # For full locales list check /usr/share/locale/* # # Check system messages -# msgs -q +msgs -q # Allow terminal messages -# mesg y +mesg y --- etc/login.conf +++ etc/login.conf @@ -28,7 +28,7 @@ :welcome=/etc/motd:\ :setenv=BLOCKSIZE=K:\ :mail=/var/mail/$:\ - :path=/sbin /bin /usr/sbin /usr/bin /usr/local/sbin /usr/local/bin ~/bin:\ + :path=~/bin /sbin /bin /usr/sbin /usr/bin /usr/local/sbin /usr/local/bin:\ :nologin=/var/run/nologin:\ :cputime=unlimited:\ :datasize=unlimited:\ @@ -84,8 +84,8 @@ # Russian Users Accounts. Setup proper environment variables. # russian|Russian Users Accounts:\ - :charset=UTF-8:\ - :lang=ru_RU.UTF-8:\ + :charset=KOI8-R:\ + :lang=ru_RU.KOI8-R:\ :tc=default: --- etc/profile +++ etc/profile @@ -5,14 +5,24 @@ # Uncomment this to give you the default 4.2 behavior, where disk # information is shown in K-Blocks # BLOCKSIZE=K; export BLOCKSIZE + +if [ "${TMPDIR+x}" ]; then + export TMPDIR=`/usr/bin/mkinittmpdir` +# Check system messages + /usr/bin/msgs -f +# Allow terminal messages + /usr/bin/mesg y +fi + +export MANPATH=`/usr/bin/manpath` +export INFOPATH='/usr/share/info:/usr/local/info:/compat/linux/usr/info' +export HTTP_AUTH='basic:*' +export CVSROOT=/home/CVShome +export FONTSERVER=xfs:7100 + # # For the setting of languages and character sets please see # login.conf(5) and in particular the charset and lang options. # For full locales list check /usr/share/locale/* # You should also read the setlocale(3) man page for information # on how to achieve more precise control of locale settings. -# -# Check system messages -# msgs -q -# Allow terminal messages -# mesg y --- etc/sh.shrc +++ etc/sh.shrc @@ -0,0 +1,2 @@ +unset HISTFILE +alias tset='set noglob histchars=""; eval `/usr/bin/tset -s \!*`; unset noglob histchars'