Compare commits

...

2 Commits

4 changed files with 15 additions and 6 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
*.swp
.cache
.roles
.venv
venv

View File

@ -21,6 +21,7 @@
tags: [ backup ]
- hosts: dsk-ryzen-1.ws.mgmt.desu.ltd
roles:
- role: desktop
- role: backup
vars:
backup_s3backup_tar_args_extra: h

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
ansible
ansible-lint
pynetbox

View File

@ -12,9 +12,12 @@
- 90-touchpad.conf
- name: configure packages
include_tasks: packages.yml
- name: configure plymouth
alternatives: name=default.plymouth path=/usr/share/plymouth/themes/bgrt/bgrt.plymouth
notify: regen initramfs
when: ansible_os_family != "Gentoo"
- name: ensure unattended-upgrades is installed
ansible.builtin.apt: name=unattended-upgrades state=present
- name: configure debian-specific stuff
block:
- name: configure plymouth
alternatives: name=default.plymouth path=/usr/share/plymouth/themes/bgrt/bgrt.plymouth
notify: regen initramfs
when: ansible_os_family != "Gentoo"
- name: ensure unattended-upgrades is installed
ansible.builtin.apt: name=unattended-upgrades state=present
when: ansible_pkg_mgr == "apt"