diff options
author | Renato Botelho <renato@netgate.com> | 2015-08-25 08:08:24 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2015-08-25 14:49:54 -0300 |
commit | 46bc6e545a17e77202aaf01ec0cd8d5a46567525 (patch) | |
tree | 32d18dda436ec739c67c489ceb771e8629cd926f /src/etc/skel | |
parent | 4d9801c2dbd2b3e54a39578ee62b93af66607227 (diff) | |
download | pfsense-46bc6e545a17e77202aaf01ec0cd8d5a46567525.zip pfsense-46bc6e545a17e77202aaf01ec0cd8d5a46567525.tar.gz |
Move main pfSense content to src/
Diffstat (limited to 'src/etc/skel')
-rw-r--r-- | src/etc/skel/dot.profile | 5 | ||||
-rw-r--r-- | src/etc/skel/dot.shrc | 14 | ||||
-rw-r--r-- | src/etc/skel/dot.tcshrc | 30 |
3 files changed, 49 insertions, 0 deletions
diff --git a/src/etc/skel/dot.profile b/src/etc/skel/dot.profile new file mode 100644 index 0000000..700597a --- /dev/null +++ b/src/etc/skel/dot.profile @@ -0,0 +1,5 @@ +# Detect interactive logins and display the shell +if [ -n "${SSH_TTY}" -o "${TERM}" = "cons25" ]; then + /etc/rc.initial + exit +fi diff --git a/src/etc/skel/dot.shrc b/src/etc/skel/dot.shrc new file mode 100644 index 0000000..6f3c2fc --- /dev/null +++ b/src/etc/skel/dot.shrc @@ -0,0 +1,14 @@ +HTTP_PROXY=`/usr/local/bin/xmllint --xpath 'string(//pfsense/system/proxyurl)' /conf/config.xml` +if [ "${HTTP_PROXY}" != "" ]; then + HTTP_PROXY_PORT=`/usr/local/bin/xmllint --xpath 'string(//pfsense/system/proxyport)' /conf/config.xml` + if [ "${HTTP_PROXY_PORT}" != "" ]; then + HTTP_PROXY="${HTTP_PROXY}:${HTTP_PROXY_PORT}" + fi + export HTTP_PROXY +fi + +# Detect interactive logins and display the shell +if [ -n "${SSH_TTY}" -o "${TERM}" = "cons25" ]; then + /etc/rc.initial + exit +fi diff --git a/src/etc/skel/dot.tcshrc b/src/etc/skel/dot.tcshrc new file mode 100644 index 0000000..38cf897 --- /dev/null +++ b/src/etc/skel/dot.tcshrc @@ -0,0 +1,30 @@ +set prompt="%{\033[0;1;33m%}[%{\033[0;1;37m%}`cat /etc/version`%{\033[0;1;33m%}]%{\033[0;1;33m%}%B[%{\033[0;1;37m%}%n%{\033[0;1;31m%}@%{\033[0;1;37m%}%M%{\033[0;1;33m%}]%{\033[0;1;32m%}%b%/%{\033[0;1;33m%}%{\033[0;1;36m%}%{\033[0;1;31m%}:%{\033[0;0;0m%} " +set autologout="0" +set autolist set color set colorcat +setenv CLICOLOR "true" +setenv LSCOLORS "exfxcxdxbxegedabagacad" +if ($term == "xterm" || $term == "vt100" || $term == "vt102" || $term == "vt220" || $term !~ "con*") then + bindkey "\e[2~" overwrite-mode # Ins + bindkey "\e[3~" delete-char # Del + + bindkey "\e[1~" beginning-of-line # Home vt + bindkey "\e[4~" end-of-line # End vt + + bindkey "\eOH" beginning-of-line # Home vt220 + bindkey "\eOF" end-of-line # End vt220 + + bindkey "\e[H" beginning-of-line # Home kvt + bindkey "\e[F" end-of-line # End kvt + + bindkey "\e[7~" beginning-of-line # Home rxvt/konsole + bindkey "\e[8~" end-of-line # End rxvt/konsole +endif + +set http_proxy=`/usr/local/bin/xmllint --xpath 'string(//pfsense/system/proxyurl)' /conf/config.xml` +if (${http_proxy} != "") then + set http_proxy_port=`/usr/local/bin/xmllint --xpath 'string(//pfsense/system/proxyport)' /conf/config.xml` + if (${http_proxy_port} != "") then + set http_proxy="${http_proxy}:${http_proxy_port}" + endif + setenv HTTP_PROXY ${http_proxy} +endif |