diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-03-16 21:04:51 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-03-16 21:04:51 +0000 |
commit | ff57f4f870639b5ea8064d789d222193f874112b (patch) | |
tree | 42edab320b931e11c54ea036e74eadc9ba73f101 | |
parent | 432602ff2a7b886d3622557996f25f03908cb2c0 (diff) |
modules/freifunk: fix cron restart in init script
-rwxr-xr-x | modules/freifunk/root/etc/init.d/freifunk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/freifunk/root/etc/init.d/freifunk b/modules/freifunk/root/etc/init.d/freifunk index a61f8b7a1..13dfde7f6 100755 --- a/modules/freifunk/root/etc/init.d/freifunk +++ b/modules/freifunk/root/etc/init.d/freifunk @@ -24,5 +24,5 @@ boot() { done } - killall -HUP crond 2>/dev/null || /etc/init.d/cron start + /etc/init.d/cron restart } |