This website works better with JavaScript.
Почетна
Преглед
Помоћ
Регистрација
Пријавите Се
ka
/
ansible-role-home
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Захтеви за спајање
0
Издања
0
Вики
Activity
Преглед изворни кода
vm ip config
systemd-xsession
Markus Katharina Brechtel
пре 4 година
родитељ
3ee63770f1
комит
6f25d6fc32
2 измењених фајлова
са
16 додато
и
0 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+12
-0
tasks/ssh.yaml
+4
-0
templates/ssh.config.j2
+ 12
- 0
tasks/ssh.yaml
Прегледај датотеку
@@ -5,3 +5,15 @@
src: ~/ssh-keys/
dest: ~/ssh-keys
mode: u=rw,g=,o=
- name: ssh auto config
template:
src: ssh.config.j2
dest: ~/.ssh/config.auto
- name: include ssh auto config
lineinfile:
path: ~/.ssh/config
line: Include config.auto
insertbefore: BOF
create: true
+ 4
- 0
templates/ssh.config.j2
Прегледај датотеку
@@ -0,0 +1,4 @@
{% for hostname in groups.vms %}
Host {{hostname}}
HostName {{hostvars[hostname].external_ip}}
{% endfor %}