source:
npl/monitoring/smokeping/post.smokeping
@
cc2b9e2
Last change on this file since cc2b9e2 was c5c522c, checked in by , 8 years ago | |
---|---|
|
|
File size: 279 bytes |
Line | |
---|---|
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.