taler-exchange.taler-exchange-aggregator@.service (774B)
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 aggregator service 10 PartOf=taler-exchange.target 11 After=postgresql.service 12 13 [Service] 14 # DD102: retry transient failures without a start-rate limit. 15 Restart=always 16 RestartSec=10s 17 User=taler-exchange-aggregator 18 Type=simple 19 RestartPreventExitStatus=6 9 20 ExecStart=/usr/bin/taler-exchange-aggregator -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