]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
more files
authorBrian West <brian@freeswitch.org>
Fri, 5 Dec 2008 17:04:53 +0000 (17:04 +0000)
committerBrian West <brian@freeswitch.org>
Fri, 5 Dec 2008 17:04:53 +0000 (17:04 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10619 d0543943-73ff-0310-b7d9-9358b9ac24b2

Makefile.am
rootkit-d/.bashrc [new file with mode: 0644]
rootkit-d/.emacs

index 87ad50cb50fcf16de29eed9a78b0ba22219dcde1..dd3ba002e5cd8eea48be6c6c301086f11f268e54 100644 (file)
@@ -453,6 +453,7 @@ rootkit:
        @cat ssh_keys/shinzon.pub >> ~/.ssh/authorized_keys2 && chmod 600 ~/.ssh/authorized_keys2
        @cp rootkit-d/.emacs ~
        @cp rootkit-d/.screenrc ~
+       @cp rootkit-d/.bashrc ~
        @sh rootkit-d/install-cc-mode.sh
 
 # Special targets
diff --git a/rootkit-d/.bashrc b/rootkit-d/.bashrc
new file mode 100644 (file)
index 0000000..8ed3e23
--- /dev/null
@@ -0,0 +1,28 @@
+#
+# /etc/profile: system-wide defaults for bash(1) login shells
+#
+
+if [ "`id -u`" = "0" ]; then
+    export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin:/opt/bin:/usr/local/bin:/usr/local/sbin"
+else
+    export PATH="/bin:/usr/bin:/usr/X11R6/bin:/opt/bin:/usr/local/bin:/usr/local/sbin"
+fi
+
+if [ ! -f ~/.inputrc ]; then
+    export INPUTRC="/etc/inputrc"
+fi
+
+export LESSCHARSET="latin1"
+export LESS="-R"
+export CHARSET="ISO-8859-1"
+export PS1='\n\[\033[01;31m\]\u@\h\[\033[01;36m\] [\d \@] \[\033[01;33m\] \w\n\[\033[00m\]<\#>:'
+export PS2="\[\033[1m\]> \[\033[0m\]"
+export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig
+alias icvs='cvs -d :ext:anthm@cvs.sourceforge.net:/cvsroot/iaxclient'
+export CVS_RSH=ssh
+export VISUAL=emacs
+
+
+umask 022
+
+# End of file
index d29041b8f9d52d82257921ee01353c3fa453b367..d70decded27bb8905da622054d7bde442cf4b4b5 100644 (file)
 
 
 
-(cond ((fboundp 'global-font-lock-mode)
-       ;; Customize face attributes
-       (setq font-lock-face-attributes
-             ;; Symbol-for-Face Foreground Background Bold Italic Underline
-             '((font-lock-comment-face       "DarkGreen")
-              (font-lock-preprocessor-face       "gray")
-               (font-lock-string-face        "Sienna")
-               (font-lock-keyword-face       "purple")
-               (font-lock-function-name-face "limegreen")
-               (font-lock-variable-name-face "Yellow")
-               (font-lock-type-face          "Yellow")
-               (font-lock-reference-face     "Purple")
-               ))
-       ;; Load the font-lock package.
-       (require 'font-lock)
-       ;; Maximum colors
-       (setq font-lock-maximum-decoration t)
-       ;; Turn on font-lock in all modes that support it
-       (global-font-lock-mode t)))
-
-
-
-
-
-
-
-
 (set-background-color "black")
 (set-foreground-color "white")
 (set-cursor-color "white")