1 Commits

Author SHA1 Message Date
alessandrovitali 9fbba9ffd6 fix: remove OS checks
either use the generic package module or OS-specific tasks that won't silently fail playbook runs
2026-07-09 16:17:30 +02:00
9 changed files with 3 additions and 98 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
# Ansible Collection # Ansible Collection
Opinionated set of roles to configure reasonable defaults for newly provisioned Debian / Ubuntu VMs running Docker. The repository provides a ready-to-use Ansible Collection (`studio.ansible`) containing reusable roles. Opinionated set of roles to configure reasonable defaults for newly provisioned virtual machines. The repository provides a ready-to-use Ansible Collection (`studio.ansible`) containing reusable roles.
Currently only supports Debian-based systems.
-14
View File
@@ -1,14 +0,0 @@
# ansible/roles/backup/defaults/main.yml
---
## Directories to include in the backup
backup_include_paths:
- /etc
- /opt/docker
## Directories to exclude from the backup
backup_exclude_paths: [] ## Nothing to exclude
## Restic retention policy
backup_retention_daily: 7
backup_retention_weekly: 4
backup_retention_monthly: 6
-31
View File
@@ -1,31 +0,0 @@
---
- name: Install Restic
ansible.builtin.apt:
name: restic
state: present
become: true
- name: Deploy restic backup script
ansible.builtin.template:
src: restic-backup.sh.j2
dest: /usr/local/bin/restic-backup.sh
mode: "0700" # Only root can read/execute this because it contains secrets
- name: Deploy restic systemd service
ansible.builtin.template:
src: restic-backup.service.j2
dest: /etc/systemd/system/restic-backup.service
mode: "0644"
- name: Deploy restic systemd timer
ansible.builtin.template:
src: restic-backup.timer.j2
dest: /etc/systemd/system/restic-backup.timer
mode: "0644"
- name: Enable and start backup timer
ansible.builtin.systemd:
name: restic-backup.timer
enabled: yes
state: started
daemon_reload: yes
@@ -1,7 +0,0 @@
[Unit]
Description=Run Restic Backup
After=network-online.target
[Service]
Type=oneshot
ExecStart=/usr/local/bin/restic-backup.sh
@@ -1,30 +0,0 @@
#!/bin/bash
## Ansible managed
## Secrets are passed via Ansible Vault variables
export RESTIC_REPOSITORY="{{ vault_restic_repo_url }}"
export RESTIC_PASSWORD="{{ vault_restic_password }}"
export AWS_ACCESS_KEY_ID="{{ vault_aws_access_key }}"
export AWS_SECRET_ACCESS_KEY="{{ vault_aws_secret_key }}"
set -e
echo "Starting Restic Backup at $(date)"
## Run the backup using paths and exclusions defined in group_vars
restic backup \
{% for path in backup_include_paths %}
"{{ path }}" \
{% endfor %}
{% for path in backup_exclude_paths %}
--exclude "{{ path }}" \
{% endfor %}
--cleanup-cache
restic forget \
--prune \
--keep-daily {{ backup_retention_daily }} \
--keep-weekly {{ backup_retention_weekly }} \
--keep-monthly {{ backup_retention_monthly }}
echo "Restic backup completed at $(date)"
@@ -1,10 +0,0 @@
[Unit]
Description=Run Restic Backup Daily at 4:00 AM
[Timer]
OnCalendar=*-*-* 04:00:00
Persistent=true
RandomizedDelaySec=1800
[Install]
WantedBy=timers.target
-2
View File
@@ -10,7 +10,6 @@
update_cache: true update_cache: true
upgrade: dist upgrade: dist
cache_valid_time: 3600 cache_valid_time: 3600
when: ansible_facts['os_family'] == "Debian" ## only on Debian / Ubuntu systems
become: true become: true
- name: Install essential system utilities - name: Install essential system utilities
@@ -26,7 +25,6 @@
- unattended-upgrades - unattended-upgrades
state: present state: present
update_cache: true update_cache: true
when: ansible_facts['os_family'] == "Debian"
become: true become: true
# #
# - name: Enable unattended-upgrades # - name: Enable unattended-upgrades
-1
View File
@@ -5,7 +5,6 @@
- docker.io - docker.io
- docker-compose - docker-compose
state: present state: present
when: ansible_facts['os_family'] == "Debian" ## Debian / Ubuntu
become: true become: true
- name: Ensure Docker service is running - name: Ensure Docker service is running
-2
View File
@@ -24,7 +24,6 @@
name: name:
- fail2ban - fail2ban
state: present state: present
when: ansible_facts['os_family'] == "Debian"
become: true become: true
- name: Start fail2ban - name: Start fail2ban
@@ -32,4 +31,3 @@
name: fail2ban name: fail2ban
state: started state: started
enabled: yes enabled: yes
when: ansible_facts['os_family'] == "Debian"