| 12345678910111213141516171819202122232425262728293031323334353637 |
- #!@l_prefix@/lib/openpkg/bash @l_prefix@/etc/rc
- ##
- ## rc.fprot -- Run-Commands
- ##
- %config
- fprot_enable="$openpkg_rc_def"
- fprot_dats="ftp://ftp.f-prot.com/pub/"
- fprot_update="daily"
- %common
- fprot_update () {
- rm -rf /tmp/fprot
- @l_prefix@/sbin/f-prot-update -cron -quiet || exit $?
- chmod 644 @l_prefix@/share/fprot/*.DEF
- rm -rf /tmp/fprot
- }
- %hourly -u @l_musr@
- rcService fprot enable yes || exit 0
- if [ ".$fprot_update" = .hourly ]; then
- fprot_update || exit $?
- fi
- %daily -u @l_musr@
- rcService fprot enable yes || exit 0
- if [ ".$fprot_update" = .daily ]; then
- fprot_update || exit $?
- fi
- %weekly -u @l_musr@
- rcService fprot enable yes || exit 0
- if [ ".$fprot_update" = .weekly ]; then
- fprot_update || exit $?
- fi
|