mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
918c510872
PR: 40932 Submitted by: Andy Fawcett <andy@athame.co.uk>
17 lines
208 B
Bash
17 lines
208 B
Bash
#!/bin/sh
|
|
case "$1" in
|
|
start)
|
|
/usr/local/sbin/uptimed -b
|
|
echo -n ' uptimed'
|
|
/usr/local/sbin/uptimed
|
|
;;
|
|
stop)
|
|
;;
|
|
restart)
|
|
;;
|
|
*)
|
|
echo "Usage: ${0##*/}: { start | stop | restart }" 2>&1
|
|
exit 65
|
|
;;
|
|
esac
|