diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-08-19 07:48:47 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-08-19 07:48:47 +0200 |
commit | 69f1478551e1880ec94a748898fdabe3419a9d90 (patch) | |
tree | b6206b6809606b07f8e6b2dbb99c206118b3dea1 /debian | |
parent | 215bed86e217d2258b05a56465ece1c6f8d8730a (diff) |
add new auditor helpers to auditor package
Diffstat (limited to 'debian')
7 files changed, 91 insertions, 1 deletions
diff --git a/debian/taler-auditor.taler-helper-auditor-aggregation.service b/debian/taler-auditor.taler-helper-auditor-aggregation.service new file mode 100644 index 000000000..f8617d4f1 --- /dev/null +++ b/debian/taler-auditor.taler-helper-auditor-aggregation.service @@ -0,0 +1,15 @@ +[Unit]
+Description=GNU Taler auditor helper checking aggregations
+After=postgres.service
+
+[Service]
+User=taler-auditor-httpd
+Type=simple
+Restart=always
+RestartSec=1s
+RestartPreventExitStatus=9
+ExecStart=/usr/bin/taler-helper-auditor-aggregation -c /etc/taler/taler.conf -L INFO
+PrivateTmp=yes
+PrivateDevices=yes
+ProtectSystem=full
+RuntimeMaxSec=3600s
diff --git a/debian/taler-auditor.taler-helper-auditor-coins.service b/debian/taler-auditor.taler-helper-auditor-coins.service new file mode 100644 index 000000000..86fbb364b --- /dev/null +++ b/debian/taler-auditor.taler-helper-auditor-coins.service @@ -0,0 +1,15 @@ +[Unit]
+Description=GNU Taler auditor helper checking coin histories
+After=postgres.service
+
+[Service]
+User=taler-auditor-httpd
+Type=simple
+Restart=always
+RestartSec=1s
+RestartPreventExitStatus=9
+ExecStart=/usr/bin/taler-helper-auditor-coins -c /etc/taler/taler.conf -L INFO
+PrivateTmp=yes
+PrivateDevices=yes
+ProtectSystem=full
+RuntimeMaxSec=3600s
diff --git a/debian/taler-auditor.taler-helper-auditor-deposits.service b/debian/taler-auditor.taler-helper-auditor-deposits.service index 7185a8d52..d95512feb 100644 --- a/debian/taler-auditor.taler-helper-auditor-deposits.service +++ b/debian/taler-auditor.taler-helper-auditor-deposits.service @@ -1,5 +1,5 @@ [Unit]
-Description=GNU Taler auditor helper reporting confirmation deposits
+Description=GNU Taler auditor helper checking confirmation deposits
After=postgres.service
[Service]
diff --git a/debian/taler-auditor.taler-helper-auditor-purses.service b/debian/taler-auditor.taler-helper-auditor-purses.service new file mode 100644 index 000000000..89f04b874 --- /dev/null +++ b/debian/taler-auditor.taler-helper-auditor-purses.service @@ -0,0 +1,15 @@ +[Unit]
+Description=GNU Taler auditor helper checking purses
+After=postgres.service
+
+[Service]
+User=taler-auditor-httpd
+Type=simple
+Restart=always
+RestartSec=1s
+RestartPreventExitStatus=9
+ExecStart=/usr/bin/taler-helper-auditor-purses -c /etc/taler/taler.conf -L INFO
+PrivateTmp=yes
+PrivateDevices=yes
+ProtectSystem=full
+RuntimeMaxSec=3600s
diff --git a/debian/taler-auditor.taler-helper-auditor-reserves.service b/debian/taler-auditor.taler-helper-auditor-reserves.service new file mode 100644 index 000000000..d1f007dd5 --- /dev/null +++ b/debian/taler-auditor.taler-helper-auditor-reserves.service @@ -0,0 +1,15 @@ +[Unit]
+Description=GNU Taler auditor helper checking reserves
+After=postgres.service
+
+[Service]
+User=taler-auditor-httpd
+Type=simple
+Restart=always
+RestartSec=1s
+RestartPreventExitStatus=9
+ExecStart=/usr/bin/taler-helper-auditor-reserves -c /etc/taler/taler.conf -L INFO
+PrivateTmp=yes
+PrivateDevices=yes
+ProtectSystem=full
+RuntimeMaxSec=3600s
diff --git a/debian/taler-auditor.taler-helper-auditor-wire-credit.service b/debian/taler-auditor.taler-helper-auditor-wire-credit.service new file mode 100644 index 000000000..d810227a0 --- /dev/null +++ b/debian/taler-auditor.taler-helper-auditor-wire-credit.service @@ -0,0 +1,15 @@ +[Unit]
+Description=GNU Taler auditor helper checking for missing wire credit transfers
+After=postgres.service
+
+[Service]
+User=taler-auditor-httpd
+Type=simple
+Restart=always
+RestartSec=1s
+RestartPreventExitStatus=9
+ExecStart=/usr/bin/taler-helper-auditor-wire-credit -c /etc/taler/taler.conf -L INFO
+PrivateTmp=yes
+PrivateDevices=yes
+ProtectSystem=full
+RuntimeMaxSec=3600s
diff --git a/debian/taler-auditor.taler-helper-auditor-wire-debit.service b/debian/taler-auditor.taler-helper-auditor-wire-debit.service new file mode 100644 index 000000000..179f29aa8 --- /dev/null +++ b/debian/taler-auditor.taler-helper-auditor-wire-debit.service @@ -0,0 +1,15 @@ +[Unit]
+Description=GNU Taler auditor helper checking outgoing wire debit operations
+After=postgres.service
+
+[Service]
+User=taler-auditor-httpd
+Type=simple
+Restart=always
+RestartSec=1s
+RestartPreventExitStatus=9
+ExecStart=/usr/bin/taler-helper-auditor-wire-debit -c /etc/taler/taler.conf -L INFO
+PrivateTmp=yes
+PrivateDevices=yes
+ProtectSystem=full
+RuntimeMaxSec=3600s
|