Files
Troposphere/include/root/etc/init.d/S15crond
T

15 lines
219 B
Bash
Raw Normal View History

2026-07-29 03:36:26 +03:00
#!/bin/sh
case "$1" in
start)
/usr/sbin/crond -c /etc/crontabs
;;
stop)
/usr/bin/killall crond
;;
*)
echo "Usage: $0 {start|stop}" >&2
exit 1
;;
esac