mirror of
https://github.com/roles-ansible/ansible_role_restic.git
synced 2024-12-11 23:41:32 +01:00
Merge pull request #38 from rndmh3ro/add_journald_logging
put errorlogs in journald, too
This commit is contained in:
commit
a975fe71f2
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@
|
|||
{% set forget_result_log, forget_output_log = "/dev/null", "/dev/null" %}
|
||||
{% else %}
|
||||
{% if (item.log_to_journald is defined and item.log_to_journald) %}
|
||||
{% set backup_result_log, backup_output_log = "| systemd-cat -t " + item.name, "| systemd-cat -t " + item.name %}
|
||||
{% set forget_result_log, forget_output_log = "| systemd-cat -t " + item.name, "| systemd-cat -t " + item.name %}
|
||||
{% set backup_result_log, backup_output_log = "| systemd-cat -t " + item.name, "2>&1 | systemd-cat -t " + item.name %}
|
||||
{% set forget_result_log, forget_output_log = "| systemd-cat -t " + item.name, "2>&1 | systemd-cat -t " + item.name %}
|
||||
{% else %}
|
||||
{% set backup_result_log, backup_output_log = ">> " + restic_log_dir + "/" + item.name + "-backup-result.log", "| tee " + restic_log_dir + "/" + item.name + "-backup-output.log" %}
|
||||
{% set forget_result_log, forget_output_log = ">> " + restic_log_dir + "/" + item.name + "-forget-result.log", "| tee " + restic_log_dir + "/" + item.name + "-forget-output.log" %}
|
||||
|
|
Loading…
Reference in a new issue