Modify ↓
Ticket #454 (closed defect: fixed)
tools/bcfg2-cron script error
Reported by: | [email protected]… | Owned by: | desai |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | bcfg2-client | Version: | |
Keywords: | debian | Cc: |
Description
There's an extra closing curly-brace in the bcfg2-cron script invoked by the debian cron setup which prevents bcfg2 from running. One-liner patch follows:
--- bcfg2-0.9.4-orig/tools/bcfg2-cron 2006-09-05 07:57:21.000000000 -0700 +++ bcfg2-0.9.4/tools/bcfg2-cron 2007-06-29 12:04:36.000000000 -0700 @@ -31,7 +31,7 @@ # Invoke bcfg2 if enabled if [ ${BCFG2_ENABLED} -eq 1 ]; then eval BCFG2_EXTRA_OPTIONS=\${BCFG2_OPTIONS_${RUNTYPE}} - ${BCFG2_BIN} ${BCFG2_OPTIONS} ${BCFG2_EXTRA_OPTIONS}} + ${BCFG2_BIN} ${BCFG2_OPTIONS} ${BCFG2_EXTRA_OPTIONS} fi }
Attachments
Change History
Note: See
TracTickets for help on using
tickets.
Resolved in [90c003c8b39e31aae0c2626884180e0911a37c8c] (SVN r3393). Thanks for the ticket.