41 lines
1.3 KiB
Markdown
41 lines
1.3 KiB
Markdown
# Ansible Semaphore
|
|
|
|
Ansible mit pip installiert. pip hat neuere Version von ansible.<br />
|
|
`~/.ssh/config` muß Windows einträge enthalten.
|
|
keyauth in Windows:
|
|
[Anleitung](https://woshub.com/using-ssh-key-based-authentication-on-windows/)
|
|
Evtl.noch den ssh-Port in der **Firewall** öffnen. Weiterhin ist z.B. bei Wander eine **Gruppe für ssh** zugelassen. Hilfreich, wenn es nicht sichere Accounts am Rechner gibt, die nicht für ssh zugelassen sein sollen.
|
|
## Semaphore:
|
|
Im Environment nichts angegeben. Hier wäre evtl ansible_ssh_user=Administrator denkbar.
|
|
Im Keysore login mit passwort angegeben. aber alles leer gelassen. hier ginge bestimm auch "ohne"
|
|
|
|
|
|
meine `/etc/ansible/hosts` Datei
|
|
```
|
|
[lokal_2019]
|
|
192.168.252.15
|
|
[lokal_2019:vars]
|
|
ansible_ssh_user=Administrator
|
|
ansible_connection=ssh
|
|
ansible_shell_type=cmd
|
|
ansible_ssh_common_args=-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null
|
|
ansible_ssh_retries=3
|
|
ansible_become_methode=runas
|
|
|
|
[mws_win]
|
|
mws-mail
|
|
mws-server-core
|
|
mws-wawi
|
|
mws-terminal
|
|
mws-terminal2
|
|
mws-dc2
|
|
mws-mailstore
|
|
|
|
[mws_win:vars]
|
|
ansible_ssh_user=Administrator
|
|
ansible_connection=ssh
|
|
ansible_shell_type=cmd
|
|
ansible_ssh_common_args=-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null
|
|
ansible_ssh_retries=3
|
|
ansible_become_methode=runas
|
|
``` |