summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index d33c953..9d10153 100644
--- a/README.md
+++ b/README.md
@@ -160,6 +160,16 @@ Use snooze inline, cron-style mail:
actualjob >output 2>&1 ||
mail -s "$(hostname): snooze job failed with status $?" root <output
+Snooze for rate-limiting a general purpose runit service: don't
+restart faster than every two minutes. (Note that after a crash with a
+daemon runtime of more than two minutes, it will be restarted
+immediately):
+
+ set -e
+ snooze -H'*' -M'*' -S'*' -t timefile -T 2m
+ touch timefile
+ exec mydaemond
+
## Installation
Use `make all` to build, `make install` to install relative to `PREFIX`