forked from colonelpanic/dotfiles
fixed up the ssh_agent fixer. updated some of the debian stuff.
This commit is contained in:
parent
caf785b53b
commit
da4104da8d
15
.debian
15
.debian
@ -1,16 +1,5 @@
|
||||
sudo -v
|
||||
INSTALL="apt-get -y install"
|
||||
INSTALL="sudo apt-get -y install"
|
||||
$INSTALL zsh
|
||||
$INSTALL tmux
|
||||
$INSTALL emacs
|
||||
$INSTALL emacs24-nox
|
||||
$INSTALL nmap
|
||||
$INSTALL readline
|
||||
|
||||
# python dependencies
|
||||
$INSTALL libreadline5-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
|
||||
cd ~/Downloads
|
||||
wget http://python.org/ftp/python/2.7.2/Python-2.7.2.tgz
|
||||
tar -xvf Python-2.7.2.tgz && cd Python-2.7.2/
|
||||
./configure
|
||||
make
|
||||
sudo make altinstall
|
6
.exports
6
.exports
@ -22,9 +22,3 @@ export MANPAGER="less -X"
|
||||
|
||||
git config --global user.name "Ivan Malison"
|
||||
git config --global user.email IvanMalison@gmail.com
|
||||
|
||||
# EC2 stuff.
|
||||
export JAVA_HOME="$(/usr/libexec/java_home)"
|
||||
export EC2_PRIVATE_KEY="$(/bin/ls "$HOME"/.ec2/pk-*.pem | /usr/bin/head -1)"
|
||||
export EC2_CERT="$(/bin/ls "$HOME"/.ec2/cert-*.pem | /usr/bin/head -1)"
|
||||
export EC2_HOME="/usr/local/Library/LinkedKegs/ec2-api-tools/jars"
|
@ -1,4 +1,10 @@
|
||||
source ~/ssh-find-agent/ssh-find-agent.bash
|
||||
find_all_ssh_agent_sockets() {
|
||||
find /tmp -type s -name agent.\* 2> /dev/null | grep '/tmp/ssh-.*/agent.*'
|
||||
}
|
||||
|
||||
set_ssh_agent_socket() {
|
||||
export SSH_AUTH_SOCK=$(find_all_ssh_agent_sockets | tail -n 1 | awk -F: '{print $1}')
|
||||
}
|
||||
|
||||
# Simple calculator
|
||||
function calc() {
|
||||
|
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -7,6 +7,3 @@
|
||||
[submodule "oh-my-zsh"]
|
||||
path = oh-my-zsh
|
||||
url = git@github.com:IvanMalison/oh-my-zsh.git
|
||||
[submodule "ssh-find-agent"]
|
||||
path = ssh-find-agent
|
||||
url = git@github.com:wwalker/ssh-find-agent.git
|
||||
|
2
setup.sh
2
setup.sh
@ -52,8 +52,6 @@ function install_python_packages() {
|
||||
}
|
||||
|
||||
|
||||
sudo -v
|
||||
[ "$1" == "--install" -o "$1" == "-i" ] && echo "Installing essential files." && install_essentials
|
||||
echo "Installing Dot Files."
|
||||
source bootstrap.sh
|
||||
echo "Installing Tmux Configuration."
|
||||
|
@ -1 +0,0 @@
|
||||
Subproject commit ecb780effadc3e95e5e5b9997448294f784def96
|
Loading…
Reference in New Issue
Block a user