• The forum software that supports hummy.tv will be upgraded to XenForo 2.3 on Wednesday the 20th of November 2024 starting at 7pm

    There will be some periods where the forum is unavailable, please bear with us. More details can be found in the upgrade thread.

anacrontab double entry

peterworks

Ye Olde Bowler
I have the following in my anacrontab file:

SHELL=/bin/sh
PATH=/mod/bin:/mod/usr/bin:/mod/bin/busybox:/bin:/sbin
LD_LIBRARY_PATH=/mod/lib:/lib:/usr/lib
# format: period delay job-identifier command
1 5 auto-update /mod/sbin/auto-update
1 6 empty_dustbin /mod/sbin/empty_dustbin -l
1 5 auto-update /mod/sbin/auto-update
1 3 rs_channels /mod/bin/rs -D 60 push channels
1 5 rs_disk /mod/bin/rs -D 60 push disk
1 5 rs_smart /mod/bin/rs -D 60 push smart
1 7 rs_epg /mod/bin/rs -D 60 epg offer
1 8 sched_backup /mod/webif/html/backup/backup.jim
1 5 diskattrs /mod/webif/lib/bin/diskattrs
1 5 auto-update /mod/sbin/auto-update

auto-update is doubled up. Is this correct ?
 
No, although it shouldn't do any harm (so feel free to remove it). I'll have a look at the package to see if I can find out why.
 
auto-update is doubled up. Is this correct ?
It's trebled up actually.
Mine is doubled up as well. I suspect the recent update to auto-update is to blame.

No, although it shouldn't do any harm (so feel free to remove it). I'll have a look at the package to see if I can find out why.
Probably the extra space in the command in the postinst file:
Code:
grep -v 'sbin/auto-update ' $ana > $tmpf
 
Back
Top