Compare commits

...

5 Commits

Author SHA1 Message Date
4314f86022 added glance host 2026-01-23 18:36:49 +01:00
Mathieu BOURBON
1fe85254d6 added update_cache before install 2026-01-23 15:14:53 +01:00
Mathieu BOURBON
67f41a881e added install of default packages 2026-01-23 15:11:28 +01:00
Mathieu BOURBON
6c943dbb9e added install of default packages 2026-01-23 15:10:27 +01:00
Mathieu BOURBON
b939dc7ccd added pihole and authelia lxc 2026-01-23 14:58:43 +01:00
3 changed files with 19 additions and 0 deletions

5
install_pkgs.yml Normal file
View File

@@ -0,0 +1,5 @@
- hosts: lxc
roles:
- install_pkgs
vars:
ansible_host_key_checking: False

View File

@@ -26,3 +26,9 @@ lxc:
ansible_host: 192.168.1.227 ansible_host: 192.168.1.227
prowlarr: prowlarr:
ansible_host: 192.168.1.228 ansible_host: 192.168.1.228
pihole:
ansible_host: 192.168.1.211
authelia:
ansible_host: 192.168.1.205
glance:
ansible_host: 192.168.1.220

View File

@@ -0,0 +1,8 @@
- name: Install default packages
ansible.builtin.apt:
pkg:
- neovim
- curl
- wget
state: present
update_cache: yes