1
0

Compare commits

..

No commits in common. "0548f903a851aee0dc82204c54db49cbc089d1b5" and "fdc437c60f02b5c3f5a9c2da506e244ac06502be" have entirely different histories.

5 changed files with 24 additions and 36 deletions

View File

@ -1,6 +1,4 @@
--- ---
# connection
ansible_connection: ssh ansible_connection: ssh
ansible_become_method: sudo ansible_become_method: sudo

View File

@ -1,10 +1,8 @@
--- ---
# connection # common
ansible_user: ladmin
ansible_become_user: ladmin ansible_become_user: ladmin
ansible_os_family: Arch
# sshd # sshd

View File

@ -1,7 +0,0 @@
---
# connection
ansible_user: michael
ansible_become_user: michael
ansible_os_family: Arch

View File

@ -1,28 +1,27 @@
all: all:
children: children:
hypervisors: hosts:
hosts: server:
server: ansible_host: server.balsillie.net
ansible_host: server.balsillie.net ansible_os_family: Arch
lab: lab:
ansible_host: lab.balsillie.net ansible_host: lab.balsillie.net
ansible_os_family: Arch
ansible_user: ladmin
nodes: nodes:
hosts: node1:
node1: ansible_host: node1.balsillie.net
ansible_host: node1.balsillie.net node2:
node2: ansible_host: node2.balsillie.net
ansible_host: node2.balsillie.net node3:
node3: ansible_host: node3.balsillie.net
ansible_host: node3.balsillie.net
guests: guests:
hosts: router:
router: ansible_host: router.balsillie.net
ansible_host: router.balsillie.net
workstations: workstations:
hosts: lat5420:
lat5420: ansible_host: lat5420.balsillie.net
ansible_host: lat5420.balsillie.net sff:
sff: ansible_host: sff.balsillie.net
ansible_host: sff.balsillie.net bridie:
bridie: ansible_host: bridie.balsillie.net
ansible_host: bridie.balsillie.net

View File

@ -1,6 +1,6 @@
--- ---
- name: install openssh arch - name: install openssh arch
community.general.pacman: ansible.general.pacman:
name: "{{ openssh_packages }}" name: "{{ openssh_packages }}"
state: latest state: latest
update_cache: true update_cache: true