summaryrefslogtreecommitdiff
path: root/system/incron/README
diff options
context:
space:
mode:
authorMarek Srejma <sam_web@yahoo.de>2017-04-30 21:36:22 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2017-04-30 21:36:22 +0700
commit7000ec52a66a66af713a3b53638c312b4a2def5e (patch)
tree9a4eb6231c2baeef4515e0dbf1b8c322d9584071 /system/incron/README
parentad1a1d82ce65a9a1b79ac9c2bd73cabd867e1a35 (diff)
downloadslackbuilds-7000ec52a66a66af713a3b53638c312b4a2def5e.tar.gz
system/incron: Updated for version 0.6.0 + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/incron/README')
-rw-r--r--system/incron/README10
1 files changed, 10 insertions, 0 deletions
diff --git a/system/incron/README b/system/incron/README
index 595d6437ef..b3359c1299 100644
--- a/system/incron/README
+++ b/system/incron/README
@@ -3,3 +3,13 @@ a daemon and a table manipulator. You can use it a similar way
as the regular cron. The difference is that the inotify cron
handles filesystem events rather than time periods.
+To start incrond automatically on system start, make sure that
+/etc/rc.d/rc.incrond is executable and put the following line to your
+/etc/rc.d/rc.local:
+
+ [ -x /etc/rc.d/rc.incrond ] && /etc/rc.d/rc.incrond start
+
+To stop incrond on system shutdown, add this line to your
+/etc/rc.d/rc.local_shutdown:
+
+ [ -x /etc/rc.d/rc.incrond ] && /etc/rc.d/rc.incrond stop