Modify ↓
Ticket #440 (closed defect: fixed)
bashism in init script
Reported by: | [email protected]… | Owned by: | desai |
---|---|---|---|
Priority: | trivial | Milestone: | Bcfg2 0.9.4 Release |
Component: | bcfg2-client | Version: | |
Keywords: | Cc: |
Description
in debian/bcfg2.init, there is a line:
[ "$BCFG2_ENABLED" == "0" -o "$BCFG2_INIT" == 0 ] && exit 0
this should be:
[ "$BCFG2_ENABLED" = "0" -o "$BCFG2_INIT" = 0 ] && exit 0
Looking forward to using bcfg2 now :-)
Attachments
Change History
Note: See
TracTickets for help on using
tickets.
It looks like this has already been fixed in svn, about 2 months ago. Which version are you running against?