blob: 696a1794bedb63f87b1c7907e1e7c0b30137f96e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
---
rpi_base_enable_wifi: True
# Public key file on the controller, authorized for the admin and ansible
# users on every host. EXCLUSIVE: every other key gets removed from
# authorized_keys, so this must be the key used to reach the hosts.
rpi_base_ssh_public_key_file: "~/.ssh/id_ed25519.pub"
rpi_base_timezone: "America/Chicago"
rpi_base_log_size: "100M"
rpi_base_apt_packages:
# setfacl is required for ansible become_user with an unprivileged user
# (e.g. postgres tasks); 26.04 no longer ships it by default
- "acl"
- "mosh"
- "avahi-daemon"
- "log2ram"
- "fail2ban"
- "unattended-upgrades"
- "emacs-nox"
- "htop"
- "jq"
- "tree"
- "iperf3"
- "python3-pip"
- "unzip"
- "apt-transport-https"
|