mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-22 08:11:09 +02:00
10 lines
659 B
YAML
10 lines
659 B
YAML
application_id: "svc-bkp-loc-2-usb"
|
|
|
|
backup_to_usb_script_path: "/usr/local/sbin/svc-bkp-loc-2-usb.py"
|
|
backup_to_usb_destination: '{{ backup_to_usb_mount}}{{ backup_to_usb_targed }}'
|
|
backups_folder_path: '{{ backup_to_usb_destination }}'
|
|
systemctl_mount_service_name: '{{ backup_to_usb_mount | trim(''/'') | replace(''/'',''-'') }}.mount'
|
|
|
|
backup_to_usb_mount: "{{ applications | get_app_conf(application_id, 'mount') }}"
|
|
backup_to_usb_targed: "{{ applications | get_app_conf(application_id, 'target') }}"
|
|
backup_to_usb_source: "{{ applications | get_app_conf(application_id, 'source') }}" |