/
etc
/
/etc
mkdir
upload
Name
Size
Mode
Actions
alternatives/
-
0755
rm
apache2/
-
0755
rm
bash_completion.d/
-
0755
rm
cl.nodejs/
-
0755
rm
cl.php.d/
-
0755
rm
cl.python/
-
0755
rm
cl.selector/
-
0755
rm
cl.selector.conf.d/
-
0755
rm
cpanel/
-
0751
rm
cron.daily/
-
0755
rm
default/
-
0755
rm
fonts/
-
0755
rm
gcrypt/
-
0755
rm
ghostscript/
-
0755
rm
ImageMagick/
-
0755
rm
ld.so.conf.d/
-
0755
rm
mail/
-
0755
rm
openldap/
-
0755
rm
pam.d/
-
0755
rm
pango/
-
0755
rm
pki/
-
0755
rm
profile.d/
-
0755
rm
rc.d/
-
0755
rm
sasl2/
-
0755
rm
scl/
-
0755
rm
security/
-
0755
rm
skel/
-
0755
rm
snmp/
-
0755
rm
ssh/
-
0755
rm
ssl/
-
0755
rm
sysconfig/
-
0755
rm
udev/
-
0755
rm
.etc.version
5
0600
edit
dl
rm
aliases
1512
0644
edit
dl
rm
aliases.db
12288
0644
edit
dl
rm
at.deny
1
0644
edit
dl
rm
backupmxhosts
0
0640
edit
dl
rm
bashrc
2294
0755
edit
dl
rm
DIR_COLORS
4439
0644
edit
dl
rm
DIR_COLORS.256color
5139
0644
edit
dl
rm
DIR_COLORS.lightbgcolor
4113
0644
edit
dl
rm
domainusers
7693
0640
edit
dl
rm
environment
0
0644
edit
dl
rm
group
651
0644
edit
dl
rm
host.conf
9
0644
edit
dl
rm
hosts
287
0644
edit
dl
rm
inputrc
942
0644
edit
dl
rm
ld.so.cache
57896
0644
edit
dl
rm
ld.so.conf
28
0644
edit
dl
rm
localtime
180
0644
edit
dl
rm
lynx-site.cfg
66
0644
edit
dl
rm
lynx.cfg
144189
0644
edit
dl
rm
lynx.lss
3583
0644
edit
dl
rm
mail.rc
1909
0644
edit
dl
rm
mailcap
272
0644
edit
dl
rm
mailhelo
2846
0640
edit
dl
rm
mailips
1902
0640
edit
dl
rm
mime.types
43938
0666
edit
dl
rm
my.cnf
184
0644
edit
dl
rm
nsswitch.conf
1688
0644
edit
dl
rm
odbc.ini
0
0644
edit
dl
rm
odbcinst.ini
575
0644
edit
dl
rm
passwd
1496
0644
edit
dl
rm
profile
2387
0644
edit
dl
rm
protocols
6455
0644
edit
dl
rm
relayhosts
-
0
edit
dl
rm
resolv.conf
70
0644
edit
dl
rm
rpc
1615
0644
edit
dl
rm
screenrc
6682
0644
edit
dl
rm
senderverifybypasshosts
0
0640
edit
dl
rm
services
641020
0644
edit
dl
rm
shadow
965
0600
edit
dl
rm
skipsmtpcheckhosts
107
0640
edit
dl
rm
spammeripblocks
0
0640
edit
dl
rm
trustedmailhosts
97
0640
edit
dl
rm
vimrc
1982
0644
edit
dl
rm
virc
1982
0644
edit
dl
rm
wgetrc
4479
0644
edit
dl
rm
zlogin
252
0644
edit
dl
rm
zlogout
86
0644
edit
dl
rm
zprofile
375
0644
edit
dl
rm
zshenv
510
0644
edit
dl
rm
zshrc
883
0644
edit
dl
rm
Edit:
/etc/profile
(2387B)
# /etc/profile # System wide environment and startup programs, for login setup # Functions and aliases go in /etc/bashrc # 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. pathmunge () { case ":${PATH}:" in *:"$1":*) ;; *) if [ "$2" = "after" ] ; then PATH=$PATH:$1 else PATH=$1:$PATH fi esac } if [ -x /usr/bin/id ]; then if [ -z "$EUID" ]; then # ksh workaround EUID=`id -u` UID=`id -ru` fi USER="`id -un`" LOGNAME=$USER MAIL="/var/spool/mail/$USER" fi # Path manipulation if [ "$EUID" = "0" ]; then pathmunge /sbin pathmunge /usr/sbin pathmunge /usr/local/sbin else pathmunge /usr/local/sbin after pathmunge /usr/sbin after pathmunge /sbin after fi HOSTNAME=`/bin/hostname 2>/dev/null` HISTSIZE=1000 if [ "$HISTCONTROL" = "ignorespace" ] ; then export HISTCONTROL=ignoreboth else export HISTCONTROL=ignoredups fi export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL # By default, we want umask to get set. This sets it for login shell # Current threshold for system reserved uid/gids is 200 # You could check uidgid reservation validity in # /usr/share/doc/setup-*/uidgid file if [ $UID -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then umask 002 else umask 022 fi for i in /etc/profile.d/*.sh ; do if [ -r "$i" ]; then if [ "${-#*i}" != "$-" ]; then . "$i" else . "$i" >/dev/null 2>&1 fi fi done unset i unset -f pathmunge #cPanel Added local::lib -- BEGIN LOCALLIBUSER=$USER if [ -e "/usr/bin/whoami" ]; then LOCALLIBUSER=`/usr/bin/whoami` fi if [ "$LOCALLIBUSER" != "root" ]; then eval $(perl -Mlocal::lib) fi #cPanel Added local::lib -- END #cPanel Added User Commands -- BEGIN # Insert an entry into the PATH after all of the user's home directory paths. PATH="$(/usr/local/cpanel/3rdparty/bin/perl -e 'print join ":", map { ( ( !/^\Q$ENV{HOME}\E/ && !$seen++ ? @ARGV : () ), $_ ) } split /:/, $ENV{PATH};' /usr/local/cpanel/3rdparty/lib/path-bin)" export PATH #cPanel Added User Commands -- END
Save
cmd:
run