diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/incron/incron.install |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/incron/incron.install')
-rw-r--r-- | community/incron/incron.install | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/community/incron/incron.install b/community/incron/incron.install new file mode 100644 index 000000000..3c4535b00 --- /dev/null +++ b/community/incron/incron.install @@ -0,0 +1,15 @@ +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 + # Fix permissions + chown incron.incron -R /var/spool/incron +} + +pre_remove() { + [ -h /var/service/incron ] && rm /var/service/incron + /etc/rc.d/incron stop + usr/sbin/userdel incron >& /dev/null + usr/sbin/groupdel incron >& /dev/null +} + |