Suppress old container cleanup (kill/rm) failures
People often report and ask about these "failures". More-so previously, when the `docker kill/rm` output was collected, but it still happens now when people do `systemctl status matrix-something` and notice that it says "FAILURE". Suppressing to avoid further time being wasted on saying "this is expected".
This commit is contained in:
roles
matrix-backup-borg
templates
matrix-bot-go-neb
templates
systemd
matrix-bot-honoroit
templates
matrix-bot-matrix-reminder-bot
templates
matrix-bot-mjolnir
templates
matrix-bridge-appservice-discord
templates
matrix-bridge-appservice-irc
templates
matrix-bridge-appservice-slack
templates
matrix-bridge-appservice-webhooks
templates
matrix-bridge-beeper-linkedin
templates
matrix-bridge-mautrix-facebook
templates
matrix-bridge-mautrix-googlechat
templates
matrix-bridge-mautrix-hangouts
templates
matrix-bridge-mautrix-instagram
templates
matrix-bridge-mautrix-signal
matrix-bridge-mautrix-telegram
templates
matrix-bridge-mautrix-twitter
templates
matrix-bridge-mautrix-whatsapp
templates
matrix-bridge-mx-puppet-discord
templates
matrix-bridge-mx-puppet-groupme
templates
matrix-bridge-mx-puppet-instagram
templates
matrix-bridge-mx-puppet-skype
templates
matrix-bridge-mx-puppet-slack
templates
matrix-bridge-mx-puppet-steam
templates
matrix-bridge-mx-puppet-twitter
templates
matrix-client-cinny
templates
matrix-client-element
templates
matrix-client-hydrogen
templates
matrix-corporal
templates
systemd
matrix-coturn
templates
systemd
matrix-dendrite
templates
dendrite
systemd
matrix-dimension
templates
systemd
matrix-dynamic-dns
templates
matrix-email2matrix
templates
matrix-grafana
templates
systemd
matrix-jitsi
templates
matrix-ma1sd
templates
systemd
matrix-mailer
templates
systemd
matrix-nginx-proxy
templates
matrix-postgres-backup
templates
matrix-postgres
templates
systemd
matrix-prometheus-node-exporter
templates
matrix-prometheus-postgres-exporter
templates
matrix-prometheus
templates
systemd
matrix-registration
templates
matrix-sygnal
templates
systemd
matrix-synapse-admin
templates
matrix-synapse
templates
synapse
systemd
@ -9,7 +9,7 @@ DefaultDependencies=no
|
||||
Type=simple
|
||||
Environment="HOME={{ matrix_systemd_unit_home_path }}"
|
||||
ExecStartPre=-{{ matrix_host_command_docker }} stop matrix-postgres-backup
|
||||
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-postgres-backup 2>/dev/null'
|
||||
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-postgres-backup 2>/dev/null || true'
|
||||
|
||||
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-postgres-backup \
|
||||
--log-driver=none \
|
||||
@ -22,7 +22,7 @@ ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-postgres-backu
|
||||
{{ matrix_postgres_backup_docker_image_to_use }}
|
||||
|
||||
ExecStop=-{{ matrix_host_command_docker }} stop matrix-postgres-backup
|
||||
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-postgres-backup 2>/dev/null'
|
||||
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-postgres-backup 2>/dev/null || true'
|
||||
Restart=always
|
||||
RestartSec=30
|
||||
SyslogIdentifier=matrix-postgres-backup
|
||||
|
Reference in New Issue
Block a user