sys_watchdog 0.1.14 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -14
- data/lib/sys_watchdog/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d674d725aa8ba6f6fca70fdccb68802dbe3888f
|
|
4
|
+
data.tar.gz: 2ec0c9c1ac9219cbd3143ad308afa81107838bca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e824298e91d3d9e7db6914c267b77d8beac997fd59b119489ad0f74e4539bec312372b8f80373fadf489929319f2669a989f69e25e9a7e727ecdb3972a57ae5
|
|
7
|
+
data.tar.gz: 972bcef9bd5c017ee48a001baed499e8d16687221a6c1e76e3e27c329bcb949dc02148ca69c85b95b0657582d15ce7f2abf9e82b8947bca7a378b38b5010ae7f
|
data/README.md
CHANGED
|
@@ -23,16 +23,8 @@ If using Rbenv, run ```rbenv rehash``` to make sys_watchdog binary available.
|
|
|
23
23
|
|
|
24
24
|
## Setup
|
|
25
25
|
|
|
26
|
-
If on Linux with systemd available (eg: Ubuntu 16+, RedHat 7+. Generally distro versions released from 2015 on):
|
|
27
|
-
|
|
28
26
|
```
|
|
29
|
-
sys_watchdog
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
Otherwise:
|
|
33
|
-
|
|
34
|
-
```
|
|
35
|
-
sys_watchdog setup_with_cron
|
|
27
|
+
sys_watchdog setup
|
|
36
28
|
```
|
|
37
29
|
|
|
38
30
|
Edit ```/etc/sys_watchdog.yml```. You can see example configurations in [util/sys_watchdog_sample.yml](https://github.com/tomlobato/sys_watchdog/blob/master/util/sys_watchdog_sample.yml) and [test/sys_watchdog_test.yml](https://github.com/tomlobato/sys_watchdog/blob/master/test/sys_watchdog_test.yml).
|
|
@@ -53,11 +45,7 @@ Finally, start the periodic run...
|
|
|
53
45
|
|
|
54
46
|
for systemd:
|
|
55
47
|
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
or, if installed with cron, uncomment the cron job line:
|
|
59
|
-
|
|
60
|
-
```vim /etc/crontab```
|
|
48
|
+
```sys_watchdog start```
|
|
61
49
|
|
|
62
50
|
## Command line Cli
|
|
63
51
|
|
data/lib/sys_watchdog/version.rb
CHANGED