1234567891011121314151617181920212223242526272829303132333435363738 |
- #! /bin/sh -
- #
- # atd/rc.main
- #
- # Run jobs queued for later execution.
- #
- # Redirects the standard error to the standard output
- exec 2>&1
- TARGET="$1"
- SVNAME="${2:-atd}"
- start()
- {
- echo "*** ${SVNAME}: Starting atd ..."
- exec /usr/sbin/atd -d
- }
- reset()
- {
- case $3 in
- exit)
- echo "*** ${SVNAME}: Exited status $4"
- ;;
- signal)
- echo "*** ${SVNAME}: Killed on signal $5"
- ;;
- *)
- echo "*** ${SVNAME}: Stopped (${3})"
- ;;
- esac
- }
- # Branch to target
- eval ${TARGET} "$@"
|