diff options
author | Ismaël Bouya <ismael.bouya@fretlink.com> | 2018-11-11 17:08:12 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@fretlink.com> | 2018-11-11 17:08:12 +0100 |
commit | b4693a8e0d5a6b79dbbc3c7d3987dabbab4bbd43 (patch) | |
tree | 0fb61dc7eebf8d7f72f0bffeff86036ec2c5a288 /roles/tools/templates | |
parent | 3dd3d428e1c9bd516299d03014485d79db68fff4 (diff) | |
download | Ansible-b4693a8e0d5a6b79dbbc3c7d3987dabbab4bbd43.tar.gz Ansible-b4693a8e0d5a6b79dbbc3c7d3987dabbab4bbd43.tar.zst Ansible-b4693a8e0d5a6b79dbbc3c7d3987dabbab4bbd43.zip |
Add pavucontrol and ssh
Diffstat (limited to 'roles/tools/templates')
-rw-r--r-- | roles/tools/templates/ssh_config.j2 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/roles/tools/templates/ssh_config.j2 b/roles/tools/templates/ssh_config.j2 new file mode 100644 index 0000000..63cfe81 --- /dev/null +++ b/roles/tools/templates/ssh_config.j2 | |||
@@ -0,0 +1,13 @@ | |||
1 | Host * | ||
2 | CheckHostIP no | ||
3 | {% if "graphical_vt" not in features.get(profile, []) %} | ||
4 | ProxyCommand sh -c 'gpg-connect-agent updatestartuptty /bye >/dev/null && nc "$0" "$1"' %h %p | ||
5 | {% endif %} | ||
6 | |||
7 | Host gitolite | ||
8 | HostName git.immae.eu | ||
9 | User gitolite | ||
10 | |||
11 | Host immae.eu | ||
12 | HostName immae.eu | ||
13 | User immae | ||