Skip to content

Commit 88e2db7

Browse files
fix: POSIX cron redirect and Spine capitalization
Replace bash-ism `&>/dev/null` with POSIX-compatible `>/dev/null 2>&1` in cron job example. Capitalize Spine consistently in Spine.md testing section. Signed-off-by: Thomas Vincent <thomasvincent@gmail.com>
1 parent a006a09 commit 88e2db7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Installing-Under-Ubuntu-Debian.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Create and edit `/etc/cron.d/cacti` file.
120120
Make sure to setup the correct path to poller.php
121121

122122
```console
123-
*/5 * * * * www-data php /var/www/html/cacti/poller.php &>/dev/null
123+
*/5 * * * * www-data php /var/www/html/cacti/poller.php >/dev/null 2>&1
124124
```
125125

126126
For systemd unit's file install, you will need to modify the

Spine.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ chmod u+s /usr/local/spine/bin/spine
135135

136136
### Testing/Debugging spine via command line
137137

138-
spine offers a few different ways at the command line to test its
138+
Spine offers a few different ways at the command line to test its
139139
functionality. Here are a few examples of some tests you can run by executing
140-
spine.
140+
Spine.
141141

142142
#### Test Spine without writing results to database
143143

0 commit comments

Comments
 (0)