taler-exchange.taler-exchange-wirewatch@.service (766B)
1 # This is a systemd service template to instantiate 2 # the service multiple times for parallelism. 3 # We currently don't ship it with the package, 4 # but might use it for future high-performance 5 # deployments. 6 7 [Unit] 8 StartLimitIntervalSec=0 9 Description=GNU Taler payment system exchange wirewatch service 10 After=postgresql.service 11 PartOf=taler-exchange.target 12 13 [Service] 14 # DD102: retry transient failures without a start-rate limit. 15 Restart=always 16 RestartSec=10s 17 User=taler-exchange-wire 18 Type=simple 19 RestartPreventExitStatus=6 9 20 ExecStart=/usr/bin/taler-exchange-wirewatch -c /etc/taler-exchange/taler-exchange.conf -L INFO 21 StandardOutput=journal 22 StandardError=journal 23 PrivateTmp=yes 24 PrivateDevices=yes 25 ProtectSystem=full 26 Slice=taler-exchange.slice 27 RuntimeMaxSec=3600s