exclude manero-ca from most things

This commit is contained in:
Graham McIntire 2026-06-25 16:52:20 -05:00
parent 390eb2d835
commit a42e2eeb7b
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59
4 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,7 @@
---
# Debian IRC server — reachable via Tailscale MagicDNS
# Only run packages + inspircd. Skip users, SSH keys, sudo config.
skip_user_management: true
ansible_ssh_common_args: '-o StrictHostKeyChecking=accept-new'
ansible_python_interpreter: /usr/bin/python3

View file

@ -57,6 +57,9 @@ node3 ansible_host=node3
[postgresql_servers]
db.w5isp.com
[irc_limited]
ca.manero.org
[irc_servers]
us.manero.org ansible_host=manero-us
ca.manero.org ansible_host=manero-ca

View file

@ -16,7 +16,7 @@
name: "{{ timezone }}"
- name: Apply firewall configuration
hosts: all:!proxmox_servers
hosts: all:!proxmox_servers:!irc_limited
become: true
gather_facts: true
tags:
@ -192,7 +192,7 @@
tags: ns
- name: Apply general configuration to all nodes
hosts: all
hosts: all:!irc_limited
become: true
become_method: sudo
roles:

View file

@ -24,6 +24,7 @@
- name: Configure users and groups
ansible.builtin.import_tasks: users.yml
when: not (skip_user_management | default(false))
tags:
- users
- bootstrap