File: cronanacron

package info (click to toggle)
cron 3.0pl1-45
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 324 kB
  • ctags: 339
  • sloc: ansic: 3,128; sh: 158; makefile: 91
file content (9 lines) | stat: -rw-r--r-- 144 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Run anacron if present

PATH=/sbin:/bin:/usr/sbin:/usr/bin
export PATH

if [ -x /usr/sbin/anacron ] ; then
    /usr/sbin/anacron
fi