You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
755 B
33 lines
755 B
#!@l_prefix@/bin/openpkg rc |
|
## |
|
## rc.bdc -- Run-Commands |
|
## |
|
|
|
%config |
|
bdc_enable="$openpkg_rc_def" |
|
bdc_update="daily" |
|
|
|
%quarterly -u @l_musr@ |
|
rcService bdc enable yes || exit 0 |
|
if [ ".$bdc_update" = .quarterly ]; then |
|
@l_prefix@/bin/bdc --update || exit $? |
|
fi |
|
|
|
%hourly -u @l_musr@ |
|
rcService bdc enable yes || exit 0 |
|
if [ ".$bdc_update" = .hourly ]; then |
|
@l_prefix@/bin/bdc --update || exit $? |
|
fi |
|
|
|
%daily -u @l_musr@ |
|
rcService bdc enable yes || exit 0 |
|
if [ ".$bdc_update" = .daily ]; then |
|
@l_prefix@/bin/bdc --update || exit $? |
|
fi |
|
|
|
%weekly -u @l_musr@ |
|
rcService bdc enable yes || exit 0 |
|
if [ ".$bdc_update" = .weekly ]; then |
|
@l_prefix@/bin/bdc --update || exit $? |
|
fi |
|
|
|
|