1
0

Compare commits

...

3 Commits

Author SHA1 Message Date
0548f903a8 fix module name 2022-09-03 01:11:45 +12:00
873cf1446e host vars 2022-09-03 01:10:03 +12:00
92d3178d90 host vars 2022-09-03 01:09:55 +12:00
5 changed files with 36 additions and 24 deletions

View File

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

View File

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

View File

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

View File

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

View File

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