Compare commits
4 Commits
cc8e06f7d5
...
transcaffe
Author | SHA1 | Date | |
---|---|---|---|
59505a0759
|
|||
eb587978c5
|
|||
0aba4024de
|
|||
ed95d4fd3d
|
@@ -3,8 +3,8 @@ set -euo pipefail
|
||||
|
||||
LEGO_BINARY=$(/usr/bin/env which lego)
|
||||
|
||||
if [[ -n "$LEGO_HTTP_FALLBACK_PORT" ]]; then
|
||||
if ! nc_binary="$(type -p \"nc\")" || [[ -z $nc_binary ]]; then
|
||||
if [[ -n "${LEGO_HTTP_FALLBACK_PORT:-}" ]]; then
|
||||
if ! nc_binary="$(type -p 'nc')" || [[ -z $nc_binary ]]; then
|
||||
echo "nc not found (in PATH), exiting"
|
||||
exit 1
|
||||
fi
|
||||
@@ -14,7 +14,7 @@ if [[ -n "$LEGO_HTTP_FALLBACK_PORT" ]]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ -n "$LEGO_PRE_RENEWAL_HOOK" ]]; then
|
||||
if [[ -n "${LEGO_PRE_RENEWAL_HOOK:-}" ]]; then
|
||||
$LEGO_PRE_RENEWAL_HOOK
|
||||
fi
|
||||
|
||||
@@ -30,6 +30,6 @@ fi
|
||||
find "$LEGO_CERT_STORE_PATH/certificates" -type f | xargs -I{} -n 1 chmod "$LEGO_CERT_MODE" "{}"
|
||||
find "$LEGO_CERT_STORE_PATH/certificates" -type f | xargs -I{} -n 1 chown "${LEGO_CERT_USER}:${LEGO_CERT_GROUP}" "{}"
|
||||
|
||||
if [[ -n "$LEGO_POST_RENEWAL_HOOK" ]]; then
|
||||
if [[ -n "${LEGO_POST_RENEWAL_HOOK:-}" ]]; then
|
||||
$LEGO_POST_RENEWAL_HOOK
|
||||
fi
|
||||
|
@@ -1,5 +1,5 @@
|
||||
---
|
||||
nginx_version: "1.27.3"
|
||||
nginx_version: "1.27.4"
|
||||
nginx_flavour: alpine
|
||||
nginx_base_path: /opt/nginx
|
||||
nginx_config_file: "{{ nginx_base_path }}/nginx.conf"
|
||||
|
@@ -20,8 +20,8 @@ restic_policy_backup_frequency: hourly
|
||||
|
||||
restic_base_environment:
|
||||
RESTIC_REPOSITORY: "{{ restic_repo_url }}"
|
||||
RESTIC_PASSWORD: "{{ restic_password }}"
|
||||
RESTIC_JOBNAME: "{{ restic_job_name | default('unknown') }}"
|
||||
RESTIC_PASSWORD: "{{ restic_repo_password }}"
|
||||
RESTIC_JOBNAME: "{{ restic_job_name }}"
|
||||
RESTIC_FORGET_KEEP_WITHIN: "{{ restic_policy_keep_all_within }}"
|
||||
RESTIC_FORGET_KEEP_HOURLY: "{{ restic_policy_keep_hourly }}"
|
||||
RESTIC_FORGET_KEEP_DAILY: "{{ restic_policy_keep_daily }}"
|
||||
|
@@ -8,7 +8,9 @@ restic_user_system: false
|
||||
restic_state: present
|
||||
restic_version: "0.17.3"
|
||||
restic_job_name: default
|
||||
restic_job_state: "{{ restic_state }}"
|
||||
restic_job_directory: "/etc/restic"
|
||||
|
||||
restic_package_name: restic
|
||||
restic_script_generate_snapshot_metrics: "/opt/restic-generate-snapshot-metrics.sh"
|
||||
restic_start_job_on_unit_change: true
|
||||
|
@@ -1,7 +1,16 @@
|
||||
---
|
||||
restic_systemd_job_name: ~
|
||||
restic_systemd_job_description: "Restic backup job for {{ restic_job_name }}"
|
||||
restic_systemd_job_description: "Restic backup service"
|
||||
restic_systemd_unit_naming_scheme: "restic-{{ restic_job_name }}"
|
||||
restic_systemd_timer_naming_scheme: >-2
|
||||
{{ restic_systemd_unit_naming_scheme }}.timer
|
||||
restic_systemd_timer_state_map:
|
||||
present: "started"
|
||||
absent: "stopped"
|
||||
masked: "started"
|
||||
restic_systemd_timer_state: >-2
|
||||
{{ restic_systemd_timer_state_map[restic_job_state] }}
|
||||
|
||||
restic_systemd_syslog_identifier: "restic@%i"
|
||||
restic_systemd_working_directory: /tmp
|
||||
restic_systemd_install_wanted_by: "basic.target"
|
||||
restic_systemd_install_default_instance: "default"
|
||||
|
@@ -6,7 +6,7 @@ echo $RESTIC_JSON | jq -r '.[]
|
||||
| {
|
||||
"hostname": .hostname,
|
||||
"username": .username,
|
||||
"short_id": .short_id,
|
||||
"short_id": .short_id,
|
||||
"time": ((((.time | split(".")[0]) + "Z") | fromdate) - (3600 * (.time | split("+")[1] | split(":")[0] | tonumber + 1))),
|
||||
"paths": .paths[]
|
||||
} | "restic_snapshots{hostname=\"\(.hostname)\",username=\"\(.username)\",short_id=\"\(.short_id)\",paths=\"\(.paths)\"} \(.time)"'
|
||||
|
@@ -1,13 +1,12 @@
|
||||
---
|
||||
|
||||
- name: Ensure system daemon is reloaded
|
||||
listen: reload-systemd
|
||||
systemd:
|
||||
ansible.builtin.systemd:
|
||||
daemon_reload: true
|
||||
|
||||
- name: Ensure systemd service for '{{ restic_job_name }}' is started immediately
|
||||
listen: trigger-restic
|
||||
systemd:
|
||||
name: "{{ restic_systemd_unit_naming_scheme }}.service"
|
||||
ansible.builtin.systemd:
|
||||
name: "{{ restic_systemd_timer_naming_scheme }}"
|
||||
state: started
|
||||
when: restic_start_job_on_unit_change
|
||||
when: (not ansible_check_mode) and restic_start_job_on_unit_change
|
||||
|
30
roles/restic/tasks/configure.yml
Normal file
30
roles/restic/tasks/configure.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
- name: Ensure systemd timer file for '{{ restic_job_name }}' is {{ restic_state }}'
|
||||
ansible.builtin.template:
|
||||
dest: "/etc/systemd/system/{{ restic_systemd_unit_naming_scheme }}.timer"
|
||||
src: restic.timer.j2
|
||||
owner: root
|
||||
group: root
|
||||
mode: "0640"
|
||||
when: restic_state == 'present'
|
||||
register: restic_systemd_timer_info
|
||||
notify:
|
||||
- reload-systemd
|
||||
|
||||
- name: Ensure restic configuration for '{{ restic_job_name }}' is {{ restic_job_state }}
|
||||
ansible.builtin.template:
|
||||
src: "restic.conf.j2"
|
||||
dest: "{{ restic_job_directory }}/{{ restic_job_name }}.conf"
|
||||
mode: "0640"
|
||||
when: restic_job_state in ['present', 'masked']
|
||||
notify:
|
||||
- trigger-restic
|
||||
|
||||
- name: Ensure restic configuration for '{{ restic_job_name }}' is {{ restic_job_state }}
|
||||
ansible.builtin.file:
|
||||
path: "{{ restic_job_directory }}/{{ restic_job_name }}.conf"
|
||||
state: "{{ restic_job_state }}"
|
||||
when: restic_job_state not in ['present', 'masked']
|
||||
|
||||
- name: Flush handlers to ensure systemd knows about '{{ restic_job_name }}'
|
||||
meta: flush_handlers
|
@@ -17,4 +17,32 @@
|
||||
state: present
|
||||
when: ansible_os_family not in ['RedHat', 'Debian']
|
||||
|
||||
- name: Ensure restic backup scripts are {{ restic_state }}
|
||||
ansible.builtin.copy:
|
||||
src: "{{ script.source }}"
|
||||
dest: "{{ script.destination }}"
|
||||
mode: "{{ script.mode }}"
|
||||
loop:
|
||||
- source: restic-backup.sh
|
||||
destination: "{{ restic_systemd_service_exec_start }}"
|
||||
mode: "0510"
|
||||
- source: restic-snapshot-metrics.sh
|
||||
destination: "{{ restic_script_generate_snapshot_metrics }}"
|
||||
mode: "0510"
|
||||
loop_control:
|
||||
loop_var: script
|
||||
label: "{{ script.source }}"
|
||||
|
||||
- name: Ensure systemd service file for restic template unit is {{ restic_state }}
|
||||
ansible.builtin.template:
|
||||
dest: "/etc/systemd/system/restic@.service"
|
||||
src: "restic@.service.j2"
|
||||
owner: root
|
||||
group: root
|
||||
mode: "0640"
|
||||
when: restic_state == 'present'
|
||||
notify:
|
||||
- reload-systemd
|
||||
- trigger-restic
|
||||
|
||||
|
||||
|
@@ -15,52 +15,25 @@
|
||||
create_home: "{{ restic_user_create_home }}"
|
||||
when: restic_create_user
|
||||
|
||||
- name: Ensure restic backup scripts are {{ restic_state }}
|
||||
ansible.builtin.copy:
|
||||
src: "{{ script.source }}"
|
||||
dest: "{{ script.destination }}"
|
||||
mode: "{{ script.mode }}"
|
||||
loop:
|
||||
- source: restic-backup.sh
|
||||
destination: "{{ restic_systemd_service_exec_start }}"
|
||||
mode: "0510"
|
||||
- source: restic-snapshot-metrics.sh
|
||||
destination: "{{ restic_script_generate_snapshot_metrics }}"
|
||||
mode: "0510"
|
||||
loop_control:
|
||||
loop_var: script
|
||||
label: "{{ script.source }}"
|
||||
|
||||
- name: Ensure systemd service file for '{{ restic_job_name }}' is templated
|
||||
template:
|
||||
dest: "/etc/systemd/system/{{ restic_systemd_unit_naming_scheme }}.service"
|
||||
src: restic.service.j2
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0640
|
||||
notify:
|
||||
- reload-systemd
|
||||
- trigger-restic
|
||||
|
||||
- name: Ensure systemd service file for '{{ restic_job_name }}' is templated
|
||||
template:
|
||||
dest: "/etc/systemd/system/{{ restic_systemd_unit_naming_scheme }}.timer"
|
||||
src: restic.timer.j2
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0640
|
||||
notify:
|
||||
- reload-systemd
|
||||
|
||||
- name: Flush handlers to ensure systemd knows about '{{ restic_job_name }}'
|
||||
meta: flush_handlers
|
||||
- name: Ensure restic configuration for job is {{ restic_job_state }}
|
||||
ansible.builtin.include_tasks:
|
||||
file: "configure.yml"
|
||||
|
||||
- name: Ensure systemd timer for '{{ restic_job_name }}' is activated
|
||||
systemd:
|
||||
name: "{{ restic_systemd_unit_naming_scheme }}.timer"
|
||||
ansible.builtin.systemd:
|
||||
name: "{{ restic_systemd_timer_naming_scheme }}"
|
||||
enabled: true
|
||||
when:
|
||||
- restic_systemd_timer_info.changed
|
||||
- not restic_systemd_timer_info.failed
|
||||
- not ansible_check_mode
|
||||
|
||||
- name: Ensure systemd timer for '{{ restic_job_name }}' is started
|
||||
systemd:
|
||||
name: "{{ restic_systemd_unit_naming_scheme }}.timer"
|
||||
state: started
|
||||
- name: Ensure systemd timer for '{{ restic_job_name }}' is {{ restic_job_state }}
|
||||
ansible.builtin.systemd:
|
||||
name: "{{ restic_systemd_timer_naming_scheme }}"
|
||||
state: "{{ restic_job_state }}"
|
||||
masked: "{{ (restic_job_state == 'masked') | ternary('true', omit) }}"
|
||||
when:
|
||||
- restic_systemd_timer_info.changed
|
||||
- not restic_systemd_timer_info.failed
|
||||
- not ansible_check_mode
|
||||
|
@@ -2,3 +2,8 @@
|
||||
restic_states:
|
||||
- "present"
|
||||
- "absent"
|
||||
|
||||
restic_job_states:
|
||||
- "present"
|
||||
- "masked"
|
||||
- "absent"
|
||||
|
Reference in New Issue
Block a user