/etc
NameSizeModeActions
alternatives/-0755rm
apache2/-0755rm
bash_completion.d/-0755rm
cl.nodejs/-0755rm
cl.php.d/-0755rm
cl.python/-0755rm
cl.selector/-0755rm
cl.selector.conf.d/-0755rm
cpanel/-0751rm
crypto-policies/-0755rm
default/-0755rm
environment-modules/-0755rm
fonts/-0755rm
gcrypt/-0755rm
imunify360/-0755rm
ld.so.conf.d/-0755rm
mail/-0755rm
modulefiles/-0755rm
motd.d/-0755rm
my.cnf.d/-0755rm
openldap/-0755rm
pam.d/-0755rm
pki/-0755rm
profile.d/-0755rm
sasl2/-0755rm
scl/-0755rm
security/-0755rm
skel/-0755rm
snmp/-0755rm
ssh/-0755rm
ssl/-0755rm
sysconfig/-0755rm
.etc.version30600editdlrm
aliases15290644editdlrm
at.deny10644editdlrm
backupmxhosts00640editdlrm
bashrc34590644editdlrm
DIR_COLORS46730644editdlrm
domainusers32450640editdlrm
environment00644editdlrm
group5120644editdlrm
host.conf90644editdlrm
hosts2320644editdlrm
inputrc9430644editdlrm
ld.so.cache362870644editdlrm
ld.so.conf280644editdlrm
localtime25290644editdlrm
mailcap2720644editdlrm
mailhelo250640editdlrm
mailips00640editdlrm
mime.types674540644editdlrm
my.cnf4270644editdlrm
nsswitch.conf21240644editdlrm
passwd13200644editdlrm
profile27000644editdlrm
protocols65680644editdlrm
relayhosts-0editdlrm
resolv.conf910644editdlrm
rpc16340644editdlrm
senderverifybypasshosts00640editdlrm
services6922520644editdlrm
shadow8380600editdlrm
skipsmtpcheckhosts00640editdlrm
spammeripblocks00640editdlrm
trusted-key.key7500644editdlrm
trustedmailhosts00640editdlrm
virc11840644editdlrm
wgetrc49250644editdlrm
Edit: /etc/bashrc (3459B)
# /etc/bashrc # System wide functions and aliases # Environment stuff goes in /etc/profile # It's NOT a good idea to change this file unless you know what you # are doing. It's much better to create a custom.sh shell script in # /etc/profile.d/ to make custom changes to your environment, as this # will prevent the need for merging in future updates. # Prevent doublesourcing if [ -z "$BASHRCSOURCED" ]; then BASHRCSOURCED="Y" # are we an interactive shell? if [ "$PS1" ]; then if [ -z "$PROMPT_COMMAND" ]; then case $TERM in xterm*|vte*) if [ -e /etc/sysconfig/bash-prompt-xterm ]; then PROMPT_COMMAND=/etc/sysconfig/bash-prompt-xterm else PROMPT_COMMAND='printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"' fi ;; screen*) if [ -e /etc/sysconfig/bash-prompt-screen ]; then PROMPT_COMMAND=/etc/sysconfig/bash-prompt-screen else PROMPT_COMMAND='printf "\033k%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"' fi ;; *) [ -e /etc/sysconfig/bash-prompt-default ] && PROMPT_COMMAND=/etc/sysconfig/bash-prompt-default ;; esac fi # Turn on parallel history shopt -s histappend history -a # Turn on checkwinsize shopt -s checkwinsize [ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ " # You might want to have e.g. tty in prompt (e.g. more virtual machines) # and console windows # If you want to do so, just add e.g. # if [ "$PS1" ]; then # PS1="[\u@\h:\l \W]\\$ " # fi # to your custom modification shell script in /etc/profile.d/ directory fi if ! shopt -q login_shell ; then # We're not a login shell # Need to redefine pathmunge, it gets undefined at the end of /etc/profile pathmunge () { case ":${PATH}:" in *:"$1":*) ;; *) if [ "$2" = "after" ] ; then PATH=$PATH:$1 else PATH=$1:$PATH fi esac } # Set default umask for non-login shell only if it is set to 0 [ `umask` -eq 0 ] && umask 022 SHELL=/bin/bash # Only display echos from profile.d scripts if we are no login shell # and interactive - otherwise just process them to set envvars for i in /etc/profile.d/*.sh; do if [ -r "$i" ]; then if [ "$PS1" ]; then . "$i" else . "$i" >/dev/null fi fi done unset i unset -f pathmunge fi fi # vim:ts=4:sw=4 #cPanel Added User Commands -- BEGIN # Insert an entry into the PATH after all of the user's home directory paths. if [ -x "/usr/local/cpanel/3rdparty/bin/perl" ]; then NEW_PATH="$(/usr/local/cpanel/3rdparty/bin/perl -e 'print join ":", map { ( ( !/^\Q$ENV{HOME}\E/ && !$seen++ && $_ ne $ARGV[0] ? @ARGV : () ), $_ ) } split /:/, $ENV{PATH};' /usr/local/cpanel/3rdparty/lib/path-bin)" if [ ! -z "$NEW_PATH" ]; then PATH=$NEW_PATH export PATH fi fi #cPanel Added User Commands -- END #cPanel Added local::lib -- BEGIN LOCALLIBUSER=$USER if [ -e "/usr/bin/whoami" ]; then LOCALLIBUSER="$(/usr/bin/whoami)" fi if [ "$LOCALLIBUSER" != "root" -a -e "/var/cpanel/users/$LOCALLIBUSER" ]; then eval $(perl -Mlocal::lib >/dev/null 2>&1) fi #cPanel Added local::lib -- END