diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-05-01 14:09:21 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-05-01 14:09:21 +0000 |
commit | b3ea7cd0ed31535a1faf5c962a9a9fabeea17267 (patch) | |
tree | b0aa8e5aaae4ea4ea47c71d4b1388452d9be865f | |
parent | c2dff916a6186ac227c238d72a1d8d0c65d9fe03 (diff) |
modules/freifunk: fix syntax error in freifunk init
-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 79bcbc7ba..40fa50853 100755 --- a/modules/freifunk/root/etc/init.d/freifunk +++ b/modules/freifunk/root/etc/init.d/freifunk @@ -18,7 +18,7 @@ boot() { } grep -q '/usr/sbin/ff_rdate' /etc/crontabs/root || { - echo "0 */4 * * * /usr/sbin/ff_rdate >> /etc/crontabs/root + echo "0 */4 * * * /usr/sbin/ff_rdate" >> /etc/crontabs/root } [ -f /etc/rc.local ] && . /etc/rc.local |