Adding some date logging

This commit is contained in:
2025-12-13 12:59:11 -05:00
parent eec8b0ae6b
commit 8168246198

View File

@@ -6,6 +6,12 @@
collections:
- ansible.posix
tasks:
- name: "Log first stage start time"
ansible.builtin.debug:
msg: "{{ now() }}"
run_once: true
delegate_to: blacktide
- name: Mount backup share
ansible.posix.mount:
path: /backup
@@ -133,6 +139,12 @@
vars:
env_backups_to_keep: 10
tasks:
- name: "Log first stage start time"
ansible.builtin.debug:
msg: "{{ now() }}"
run_once: true
delegate_to: blacktide
- name: Run mount to ensure the /backup directory is present
ansible.builtin.shell:
cmd: "mount -a"