computer-playbook/roles/cleanup-disc-space/templates/cleanup-disc-space.service.j2

8 lines
550 B
Plaintext
Raw Normal View History

2023-04-16 13:24:41 +02:00
[Unit]
Description=freeing disc space
2023-05-28 22:17:33 +02:00
OnFailure=systemd-notifier@%n.service
2023-04-16 13:24:41 +02:00
[Service]
Type=oneshot
2023-12-14 21:12:25 +01:00
ExecStartPre=/bin/sh -c '/usr/bin/python {{ path_system_maintenance_service_freezer_script }} freeze {{ system_maintenance_services | join(' ') }} --ignore {{system_maintenance_cleanup_services| join(' ') }} --timeout "{{system_maintenance_timeout_backup_services}}"'
ExecStart=/bin/sh -c '/bin/bash {{cleanup_disc_space_folder}}cleanup-disc-space.sh {{size_percent_cleanup_disc_space}} && systemctl start system-maintenance-service-defrost.service'