add better fcron example
This commit is contained in:
parent
166514e101
commit
e772fa3f90
1 changed files with 6 additions and 2 deletions
|
|
@ -10,6 +10,10 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
/usr/bin/petrified
|
/usr/bin/petrified
|
||||||
|
|
||||||
## run user level every 30 minutes
|
## run user level every 30 minutes using traditional cron
|
||||||
## (f)crontab -e (-u <username>)
|
## crontab -e (-u <username>)
|
||||||
*/30 * * * * /usr/bin/petrified
|
*/30 * * * * /usr/bin/petrified
|
||||||
|
|
||||||
|
## run user level every 30 minutes using fcron
|
||||||
|
## fcrontab -e (-u <username>)
|
||||||
|
%hourly,mail(no) 0 /usr/bin/petrified
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue