From 1ebbef24eb3ad44776c95ec2d1beb2f61d52f142 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 28 Nov 2013 18:45:45 -0500 Subject: add parabolaweb-reporead-inotify --- Makefile | 3 ++- parabolaweb-reporead-inotify | 23 +++++++++++++++++++++++ parabolaweb-reporead-inotify.service | 11 +++++++++++ parabolaweb.conf | 2 ++ 4 files changed, 38 insertions(+), 1 deletion(-) create mode 100755 parabolaweb-reporead-inotify create mode 100644 parabolaweb-reporead-inotify.service diff --git a/Makefile b/Makefile index 7878d80..349a5d6 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,8 @@ install: \ $(DESTDIR)$(sbindir)/parabolaweb-update \ $(DESTDIR)$(sbindir)/parabolaweb-fcgi \ $(DESTDIR)$(confdir)/parabolaweb \ - $(DESTDIR)$(systemddir)/parabolaweb.service + $(DESTDIR)$(systemddir)/parabolaweb.service \ + $(DESTDIR)$(systemddir)/parabolaweb-reporead-inotify.service depends.txt: list-depends depends_static.txt bash $< > $@ diff --git a/parabolaweb-reporead-inotify b/parabolaweb-reporead-inotify new file mode 100755 index 0000000..1d5ed14 --- /dev/null +++ b/parabolaweb-reporead-inotify @@ -0,0 +1,23 @@ +#!/bin/bash -e + +# Copyright (c) 2012-2013 Luke Shumaker +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +. /etc/conf.d/parabolaweb + +[[ -e "${WEBDIR}/manage.py" ]] + +sudo -u "${WEBUSER:-$USER}" python2 "${WEBDIR}/manage.py" reporead_inotify \ + "${INOTIFYARGS[@]}" diff --git a/parabolaweb-reporead-inotify.service b/parabolaweb-reporead-inotify.service new file mode 100644 index 0000000..243fce7 --- /dev/null +++ b/parabolaweb-reporead-inotify.service @@ -0,0 +1,11 @@ +[Unit] +Requires=postgresql.service +After=postgresql.service +Description=ParabolaWeb reporead_inotify daemon + +[Service] +Type=simple +ExecStart=/usr/sbin/parabolaweb-reporead-inotify + +[Install] +WantedBy=multi-user.target diff --git a/parabolaweb.conf b/parabolaweb.conf index fa57fb6..bb0e51c 100644 --- a/parabolaweb.conf +++ b/parabolaweb.conf @@ -7,3 +7,5 @@ WEBDIR=/srv/http/web GITURL='git://projects.parabolagnulinux.org/parabolaweb.git#branch=master' RUNMAKE=false + +INOTIFYARGS=('/srv/ftp/%(repo)s/os/%(arch)s/') -- cgit v1.2.3