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_connection: ssh
ansible_become_method: sudo ansible_become_method: sudo

View File

@ -1,8 +1,10 @@
--- ---
# common # connection
ansible_user: ladmin
ansible_become_user: ladmin ansible_become_user: ladmin
ansible_os_family: Arch
# sshd # 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: all:
children: children:
hosts: hypervisors:
server: hosts:
ansible_host: server.balsillie.net server:
ansible_os_family: Arch ansible_host: server.balsillie.net
lab: lab:
ansible_host: lab.balsillie.net ansible_host: lab.balsillie.net
ansible_os_family: Arch
ansible_user: ladmin
nodes: nodes:
node1: hosts:
ansible_host: node1.balsillie.net node1:
node2: ansible_host: node1.balsillie.net
ansible_host: node2.balsillie.net node2:
node3: ansible_host: node2.balsillie.net
ansible_host: node3.balsillie.net node3:
ansible_host: node3.balsillie.net
guests: guests:
router: hosts:
ansible_host: router.balsillie.net router:
ansible_host: router.balsillie.net
workstations: workstations:
lat5420: hosts:
ansible_host: lat5420.balsillie.net lat5420:
sff: ansible_host: lat5420.balsillie.net
ansible_host: sff.balsillie.net sff:
bridie: ansible_host: sff.balsillie.net
ansible_host: bridie.balsillie.net bridie:
ansible_host: bridie.balsillie.net

View File

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