From b26c7f7fee919c6697b3e218c73f3f7ddd646177 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Wed, 15 Aug 2018 14:41:24 +0000 Subject: Move all sh and csh files into bin/sh/ or bin/csh/ This simplifies pkgbase by migrating these to CONFS so they are properly tagged as config files. Approved by: will (mentor) Differential Revision: https://reviews.freebsd.org/D16708 --- etc/root/dot.cshrc | 43 ------------------------------------------- etc/root/dot.login | 12 ------------ etc/root/dot.profile | 16 ---------------- 3 files changed, 71 deletions(-) delete mode 100644 etc/root/dot.cshrc delete mode 100644 etc/root/dot.login delete mode 100644 etc/root/dot.profile (limited to 'etc/root') diff --git a/etc/root/dot.cshrc b/etc/root/dot.cshrc deleted file mode 100644 index 1fcc9917f0f9..000000000000 --- a/etc/root/dot.cshrc +++ /dev/null @@ -1,43 +0,0 @@ -# $FreeBSD$ -# -# .cshrc - csh resource script, read at beginning of execution by each shell -# -# see also csh(1), environ(7). -# more examples available at /usr/share/examples/csh/ -# - -alias h history 25 -alias j jobs -l -alias la ls -aF -alias lf ls -FA -alias ll ls -lAF - -# A righteous umask -umask 22 - -set path = (/sbin /bin /usr/sbin /usr/bin /usr/local/sbin /usr/local/bin $HOME/bin) - -setenv EDITOR vi -setenv PAGER less -setenv BLOCKSIZE K - -if ($?prompt) then - # An interactive shell -- set some stuff up - set prompt = "%N@%m:%~ %# " - set promptchars = "%#" - - set filec - set history = 1000 - set savehist = (1000 merge) - set autolist = ambiguous - # Use history to aid expansion - set autoexpand - set autorehash - set mail = (/var/mail/$USER) - if ( $?tcsh ) then - bindkey "^W" backward-delete-word - bindkey -k up history-search-backward - bindkey -k down history-search-forward - endif - -endif diff --git a/etc/root/dot.login b/etc/root/dot.login deleted file mode 100644 index 8d87604f4f7d..000000000000 --- a/etc/root/dot.login +++ /dev/null @@ -1,12 +0,0 @@ -# $FreeBSD$ -# -# .login - csh login script, read by login shell, after `.cshrc' at login. -# -# See also csh(1), environ(7). -# - -# Query terminal size; useful for serial lines. -if ( -x /usr/bin/resizewin ) /usr/bin/resizewin -z - -# Uncomment to display a random cookie on each login. -# if ( -x /usr/bin/fortune ) /usr/bin/fortune -s diff --git a/etc/root/dot.profile b/etc/root/dot.profile deleted file mode 100644 index 76ebfd5e6168..000000000000 --- a/etc/root/dot.profile +++ /dev/null @@ -1,16 +0,0 @@ -# $FreeBSD$ -# -PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:~/bin -export PATH -HOME=/root -export HOME -TERM=${TERM:-xterm} -export TERM -PAGER=less -export PAGER - -# Query terminal size; useful for serial lines. -if [ -x /usr/bin/resizewin ] ; then /usr/bin/resizewin -z ; fi - -# Uncomment to display a random cookie on each login. -# if [ -x /usr/bin/fortune ] ; then /usr/bin/fortune -s ; fi -- cgit v1.2.3