From f14c9af6ee0c0399c2ec83e58402f01e9b47a06d Mon Sep 17 00:00:00 2001 From: genofire Date: Wed, 10 Jun 2020 07:28:10 +0200 Subject: systemd: add support for venv and cleanup --- contrib/init/linux-systemd/ejabberd-cleanup.service | 14 ++++++++++++++ contrib/init/linux-systemd/ejabberd-cleanup.timer | 9 +++++++++ contrib/init/linux-systemd/ejabberd-influxdb.service | 6 ++++-- 3 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 contrib/init/linux-systemd/ejabberd-cleanup.service create mode 100644 contrib/init/linux-systemd/ejabberd-cleanup.timer diff --git a/contrib/init/linux-systemd/ejabberd-cleanup.service b/contrib/init/linux-systemd/ejabberd-cleanup.service new file mode 100644 index 0000000..e68de47 --- /dev/null +++ b/contrib/init/linux-systemd/ejabberd-cleanup.service @@ -0,0 +1,14 @@ +[Unit] +Description=Clean up ejabberd + +[Service] +Type=oneshot +User=nobody +Group=nobody +Environment="VIRTUAL_ENV=/opt/ejabberd-tools/venv" +Environment="PATH=/opt/ejabberd-tools/venv/bin:/usr/local/bin:/usr/bin:/bin" +ExecStart=/opt/ejabberd-tools/cleanup.py +WorkingDirectory=/opt/ejabberd-tools/ + +[Install] +WantedBy=multi-user.target diff --git a/contrib/init/linux-systemd/ejabberd-cleanup.timer b/contrib/init/linux-systemd/ejabberd-cleanup.timer new file mode 100644 index 0000000..1b95433 --- /dev/null +++ b/contrib/init/linux-systemd/ejabberd-cleanup.timer @@ -0,0 +1,9 @@ +[Unit] +Description=Clean up ejabberd every 6h and on boot + +[Timer] +OnBootSec=15min +OnUnitActiveSec=6h + +[Install] +WantedBy=timers.target diff --git a/contrib/init/linux-systemd/ejabberd-influxdb.service b/contrib/init/linux-systemd/ejabberd-influxdb.service index 2c4c1b3..af25ae9 100644 --- a/contrib/init/linux-systemd/ejabberd-influxdb.service +++ b/contrib/init/linux-systemd/ejabberd-influxdb.service @@ -5,10 +5,12 @@ Description=ejabberd influxdb exporter Type=simple User=nobody Group=nogroup -ExecStart=/opt/ejabberd-metrics/influx.py +Environment="VIRTUAL_ENV=/opt/ejabberd-tools/venv" +Environment="PATH=/opt/ejabberd-tools/venv/bin:/usr/local/bin:/usr/bin:/bin" +ExecStart=/opt/ejabberd-tools/influx.py +WorkingDirectory=/opt/ejabberd-tools/ Restart=always RestartSec=5s -Environment=PATH=/usr/bin:/usr/local/bin [Install] WantedBy=multi-user.target -- cgit v1.2.3-18-g5258