32 lines
867 B
YAML
32 lines
867 B
YAML
---
|
|
# 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
|
|
|
|
# Override the hostname derived from inventory_hostname (ca.manero.org → "ca"),
|
|
# since this box's actual hostname is manero-ca.
|
|
hostname_override: manero-ca
|
|
|
|
# graham is a domain-linked account here — don't let the base role touch it.
|
|
managed_users:
|
|
- name: ansible
|
|
uid: 10001
|
|
shell: /bin/bash
|
|
home: /home/ansible
|
|
primary_group: ansible
|
|
authorized_keys:
|
|
- type: file
|
|
value: ansible.pub
|
|
exclusive: true
|
|
|
|
inspircd_config_files:
|
|
- inspircd.conf
|
|
- modules.conf
|
|
- opers.conf
|
|
- links.conf
|
|
- irccloud.conf
|
|
- thelounge.conf
|
|
- motd.txt
|
|
- help.txt
|