From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 231971F42D for ; Wed, 30 May 2018 20:33:18 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] examples: add systemd example for public-inbox-watch Date: Wed, 30 May 2018 20:33:18 +0000 Message-Id: <20180530203318.22163-1-e@80x24.org> List-Id: 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 | 1 + examples/public-inbox-watch.service | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 examples/public-inbox-watch.service diff --git a/MANIFEST b/MANIFEST index 8038ad4..5bbd4f7 100644 --- 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 index 0000000..abb4146 --- /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 -- EW