source:
npl/monitoring/smokeping/post.smokeping
@
128fde4
Last change on this file since 128fde4 was c5c522c, checked in by , 8 years ago | |
---|---|
|
|
File size: 279 bytes |
Rev | Line | |
---|---|---|
[c5c522c] | 1 | #!/bin/bash |
2 | ||
3 | if ! crontab -l | grep smokeping; then | |
4 | crontab -l > /tmp/$$.cron || exit 1 | |
5 | echo '*/5 * * * * nice smokeping --config=/home/system/smokeping/smokeping.conf --static &>/dev/null' >> /tmp/$$.cron || exit 1 | |
6 | cat /tmp/$$.cron | crontab - || exit 1 | |
7 | rm /tmp/$$.cron | |
8 | fi | |
9 |
Note: See TracBrowser
for help on using the repository browser.