about summary refs log tree commit homepage
path: root/examples
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2018-05-30 20:33:18 +0000
committerEric Wong <e@80x24.org>2018-05-30 20:34:33 +0000
commitd772261e4b8d39b72f19dfa025441e65eb388d6a (patch)
tree3536be5fa715878f522551f3375d71ec268c8357 /examples
parent6ca8f8d03fa8ee93edc8299f53d624f5d5841408 (diff)
downloadpublic-inbox-d772261e4b8d39b72f19dfa025441e65eb388d6a.tar.gz
I guess I forgot to include this, but I've been running
public-inbox-watch as a systemd service for nearly two
years, now.
Diffstat (limited to 'examples')
-rw-r--r--examples/public-inbox-watch.service20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/public-inbox-watch.service b/examples/public-inbox-watch.service
new file mode 100644
index 00000000..abb41469
--- /dev/null
+++ b/examples/public-inbox-watch.service
@@ -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