diff options
Diffstat (limited to 'community/incron')
-rw-r--r-- | community/incron/PKGBUILD | 4 | ||||
-rw-r--r-- | community/incron/incron.install | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/community/incron/PKGBUILD b/community/incron/PKGBUILD index 046113a27..95ab5aaf2 100644 --- a/community/incron/PKGBUILD +++ b/community/incron/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 69436 2012-04-16 10:50:17Z spupykin $ +# $Id: PKGBUILD 74562 2012-07-30 14:14:51Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Roberto Alsina <ralsina@kde.org> # Contributor: scj <scj(at)archlinux(dot)us> pkgname=incron pkgver=0.5.10 -pkgrel=1 +pkgrel=2 pkgdesc="Like the regular cron but is driven by filesystem events instead of time periods" arch=('i686' 'x86_64') url="http://incron.aiken.cz/" diff --git a/community/incron/incron.install b/community/incron/incron.install index de4de3742..fa42d9cdc 100644 --- a/community/incron/incron.install +++ b/community/incron/incron.install @@ -1,7 +1,7 @@ post_install () { # Check user/group incron exists - getent group incron > /dev/null || groupadd incron - getent passwd incron > /dev/null || useradd -c "Incron system" -g incron -s /bin/false -d /var/spool/incron incron + getent group incron > /dev/null || groupadd -r incron + getent passwd incron > /dev/null || useradd -r -c "Incron system" -g incron -s /bin/false -d /var/spool/incron incron # Fix permissions chown incron.incron -R /var/spool/incron } |