]> Sergey Matveev's repositories - public-inbox.git/commitdiff
examples: add systemd example for public-inbox-watch
authorEric Wong <e@80x24.org>
Wed, 30 May 2018 20:33:18 +0000 (20:33 +0000)
committerEric Wong <e@80x24.org>
Wed, 30 May 2018 20:34:33 +0000 (20:34 +0000)
I guess I forgot to include this, but I've been running
public-inbox-watch as a systemd service for nearly two
years, now.

MANIFEST
examples/public-inbox-watch.service [new file with mode: 0644]

index 8038ad48834d3b6f4f423b2b0807c4798b73a095..5bbd4f7ac10d21900add157dece66b6e5ec26d9e 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -37,6 +37,7 @@ examples/public-inbox-httpd.socket
 examples/public-inbox-httpd@.service
 examples/public-inbox-nntpd.socket
 examples/public-inbox-nntpd@.service
+examples/public-inbox-watch.service
 examples/public-inbox.psgi
 examples/unsubscribe-milter.socket
 examples/unsubscribe-milter@.service
diff --git a/examples/public-inbox-watch.service b/examples/public-inbox-watch.service
new file mode 100644 (file)
index 0000000..abb4146
--- /dev/null
@@ -0,0 +1,20 @@
+# ==> /etc/systemd/system/public-inbox-watch.service <==
+
+[Unit]
+Description = public-inbox Maildir watch
+After = spamassassin.service
+
+[Service]
+Environment = PI_CONFIG=/home/pi/.public-inbox/config \
+PATH=/usr/local/bin:/usr/bin:/bin
+ExecStart = /usr/local/bin/public-inbox-watch
+
+StandardOutput = syslog
+StandardError = syslog
+ExecReload = /bin/kill -HUP $MAINPID
+# this user must have read access to Maildirs it watches
+User = pi
+KillMode = process
+
+[Install]
+WantedBy = multi-user.target