diff options
author | makefu <github@syntax-fehler.de> | 2014-04-20 02:40:27 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2014-04-20 02:40:27 +0200 |
commit | ca5d255950524d1e90dd3370b1d42c2cf28124dd (patch) | |
tree | f57a0018fd3a83913c4b6bdf58b54f71be930a19 | |
parent | 8ee25aaa4e6817155e38a71732238cd9f8b39aaa (diff) | |
parent | 6cada3469c50f5d2addcaf5a5ea7130c7b3f9d9b (diff) |
Merge branch 'master' of ssh://github.com/krebscode/painload
-rw-r--r-- | retiolum/hosts/x2 | 11 | ||||
-rwxr-xr-x | ship/src/bootstrap_env_makefu | 7 |
2 files changed, 17 insertions, 1 deletions
diff --git a/retiolum/hosts/x2 b/retiolum/hosts/x2 new file mode 100644 index 00000000..bd099621 --- /dev/null +++ b/retiolum/hosts/x2 @@ -0,0 +1,11 @@ +Subnet = 10.243.201.239 +Subnet = 42:9f63:ce4a:0803:7641:18de:c23e:920b + +-----BEGIN RSA PUBLIC KEY----- +MIIBCgKCAQEArHKsP/4mnxRaTS8PB5pXh+Nz+dWRft6aIeoAuvTb2ZKTWml9hJow +VBEG/MB9DCCQI/Lf3b3YyHS3kL4BhC/whpgGtl26zfnoKamxXL+ZEvxWRt+O1PKW +OegmFYaANKIW/FPGDS/Thl2nAbXCiJ6a29UyFuwfZYxLYIAh9sPvgV+Aps9PwbZL +vwgdhekhRWQfXrKVS/B76dY0zTIbCf74kOOiAHM+xeOsBUCaI9govr1wNavyiM5P +acJq2Q8X4pcCTnXsS3JOjyyK7idYyv0VLAokolyShrEGfYk0kCTugLiX+wawfxhK +O0JvWo0+HrxSdYI1jhBQePlwx/FszJ907wIDAQAB +-----END RSA PUBLIC KEY----- diff --git a/ship/src/bootstrap_env_makefu b/ship/src/bootstrap_env_makefu index 3088d059..188a48e7 100755 --- a/ship/src/bootstrap_env_makefu +++ b/ship/src/bootstrap_env_makefu @@ -68,8 +68,13 @@ test -r ~/TODO && cat ~/TODO setopt menu_complete unsetopt correct_all +export PYTHONSTARTUP=~/.pythonrc +EOF +info 'deploying pythonrc' +cat > $HOME/.pythonrc <<EOF +import rlcompleter, readline +readline.parse_and_bind('tab:complete') EOF - info "deploying vim config" if [ -e $HOME/.vim ] ; then oldvim=$HOME/.vim.`date +%Y%M%d` |