We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9be3942 commit 9271a85Copy full SHA for 9271a85
ansible/files/verify-wal.service.j2
@@ -0,0 +1,12 @@
1
+[Unit]
2
+Description=Async WAL verification
3
+
4
+[Service]
5
+Type=simple
6
+User=adminapi
7
+ExecStart=/usr/bin/admin-mgr wal-verify-timeline --save-output-to-file true
8
+Restart=no
9
+OOMScoreAdjust=-1000
10
11
+[Install]
12
+WantedBy=multi-user.target
ansible/tasks/internal/admin-api.yml
@@ -79,6 +79,11 @@
79
src: files/adminapi.service.j2
80
dest: /etc/systemd/system/adminapi.service
81
82
+- name: adminapi - create service file for verify wal process
83
+ template:
84
+ src: files/verify-wal.service.j2
85
+ dest: /etc/systemd/system/verify-wal.service
86
87
- name: UFW - Allow connections to adminapi ports
88
ufw:
89
rule: allow
0 commit comments