fix ssh_config
This commit is contained in:
parent
42e47dbc7b
commit
c648c6ebe6
2 changed files with 20 additions and 11 deletions
27
common.toml
27
common.toml
|
@ -38,15 +38,22 @@
|
|||
|
||||
[tasks.zsh]
|
||||
rejects = [["which", "zsh"]]
|
||||
cmds = [["@install", "zsh"],
|
||||
cmds = [
|
||||
["@install", "zsh"],
|
||||
["@clone", "--depth=1" ,"https://github.com/robbyrussell/oh-my-zsh.git", ".oh-my-zsh"],
|
||||
["chsh", "-s", "/bin/zsh"]
|
||||
]
|
||||
links = [[".zshrc", "config/zshrc"]]
|
||||
links = [
|
||||
[".zshrc", "config/zshrc"],
|
||||
["termite.terminfo", "config/termite.terminfo"]
|
||||
]
|
||||
|
||||
[tasks.golang]
|
||||
envs = [["GOPATH", "${HM_DEST}/projects/go"]]
|
||||
cmds = [["mkdir", "-p", "$GOPATH"], ["@install", "golang"]]
|
||||
cmds = [
|
||||
["mkdir", "-p", "$GOPATH"],
|
||||
["@install", "golang"]
|
||||
]
|
||||
|
||||
[tasks.node]
|
||||
cmds = [["@install", "nodejs", "npm"]]
|
||||
|
@ -60,10 +67,15 @@
|
|||
]]
|
||||
|
||||
[tasks.term]
|
||||
cms = [["wget", "https://raw.githubusercontent.com/thestinger/termite/master/termite.terminfo"], ["tic", "-x", "termite.terminfo"]]
|
||||
cms = [
|
||||
["wget", "https://raw.githubusercontent.com/thestinger/termite/master/termite.terminfo"],
|
||||
["tic", "-x", "termite.terminfo"]
|
||||
]
|
||||
|
||||
[tasks.git]
|
||||
templates = [[".ssh/config", "git_config"]]
|
||||
[tasks.ssh]
|
||||
templates = [
|
||||
[".ssh/config", "config/ssh/config"]
|
||||
]
|
||||
|
||||
[tasks.vim]
|
||||
links = [
|
||||
|
@ -77,5 +89,4 @@
|
|||
### Run
|
||||
###
|
||||
[tasks.default]
|
||||
deps = ["htop", "tmux", "git", "zsh", "dev"]
|
||||
|
||||
deps = ["htop", "tmux", "git", "zsh", "dev", "vim", "golang", "ssh"]
|
||||
|
|
|
@ -23,6 +23,4 @@ Host ansible
|
|||
Host node*
|
||||
User root
|
||||
Port 16843
|
||||
IdentityFile ~/.ssh/auberge
|
||||
|
||||
|
||||
IdentityFile ~/.ssh/{{.Env}}
|
Loading…
Add table
Reference in a new issue