Modify ↓
Ticket #554 (closed defect: fixed)
fix typo in bcfg2-server init script
Reported by: | [email protected]… | Owned by: | desai |
---|---|---|---|
Priority: | minor | Milestone: | Bcfg2 0.9.6 Release |
Component: | bcfg2-server | Version: | |
Keywords: | init script | Cc: |
Description
Index: debian/buildsys/common/bcfg2-server.init =================================================================== --- debian/buildsys/common/bcfg2-server.init (revision 4603) +++ debian/buildsys/common/bcfg2-server.init (working copy) @@ -36,7 +36,7 @@ if [ "$STATUS" = 0 ] then log_success_msg "bcfg2-server" - test -d /var/lock/subsys && touch /var/log/subsys/bcfg2-server + test -d /var/lock/subsys && touch /var/lock/subsys/bcfg2-server else log_failure_msg "bcfg2-server" fi @@ -49,7 +49,7 @@ STATUS=$? if [ "$STATUS" = 0 ]; then log_success_msg "bcfg2-server" - test -d /var/lock/subsys && touch /var/log/subsys/bcfg2-server + test -d /var/lock/subsys && touch /var/lock/subsys/bcfg2-server else log_failure_msg "bcfg2-server" fi
Attachments
Change History
Changed 15 years ago by [email protected]…
- Attachment bcfg2-initscript.diff added
comment:1 Changed 15 years ago by desai
- Status changed from new to closed
- Resolution set to fixed
- Milestone set to Bcfg2 0.9.6 Release
Committed in [36f5d9f1be8a4441155ae3dedf79f425384359a8] (SVN r4604) and [46969f70bf38227a9ea88c633da2744f4ab7b61c] (SVN r4605). Thanks for the patch.
Note: See
TracTickets for help on using
tickets.
Same problem exists in bcfg2 file too. Attached diff fixes both.