File: control

package info (click to toggle)
snooze 0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 92 kB
  • sloc: ansic: 341; makefile: 21
file content (42 lines) | stat: -rw-r--r-- 1,553 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Source: snooze
Maintainer: Nicolas Braud-Santoni <nicolas@braud-santoni.eu>
Section: utils
Priority: optional
Build-Depends: debhelper (>= 11)
Standards-Version: 4.1.4
Homepage: https://github.com/chneukirchen/snooze
Vcs-Browser: https://salsa.debian.org/debian/snooze
Vcs-Git: https://salsa.debian.org/debian/snooze.git

Package: snooze
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: run a command at a particular time
 `snooze` is a tool for waiting until a particular time and then
 running a command.  Together with a service supervision system such as
 runit, this can be used to replace cron(8).
 .
 Benefits over cron:
  - mnemonic syntax
  - no overlapping job runs possible
  - filtering by ISO week and day of year
  - due to supervision, no centralized daemon required
  - due to supervision, can easily disable jobs or force their
    execution instantly
  - due to supervision, have custom logs
  - due to no centralized daemon, no fuzzing with multiple users/permissions
  - very robust with respect to external time changes
  - can use a file timestamp to ensure minimum waiting time between two
    runs, even across reboots
  - randomized delays (some cron have that)
  - variable slack (no need for anacron)
  - ad-hoc usage possible, just run the program from command line
 .
 Benefits over runwhen:
  - less confusing usage (arguably)
  - filtering by ISO week and day of year
  - zero dependencies
 .
 Benefits over uschedule:
  - no centralized daemon required
  - filtering by ISO week and day of year