diff options
Diffstat (limited to 'community/incron/incron.install')
-rw-r--r-- | community/incron/incron.install | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/community/incron/incron.install b/community/incron/incron.install deleted file mode 100644 index 9cb53bbe6..000000000 --- a/community/incron/incron.install +++ /dev/null @@ -1,13 +0,0 @@ -post_install () { - # Check user/group incron exists - 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 -} - -pre_remove() { - [ -h /var/service/incron ] && rm /var/service/incron - userdel incron >& /dev/null - groupdel incron >& /dev/null -} |