Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Improving Software Configuration Management? 33

Elvis77 writes "I am managing a project looking at some software to help us with software change management. There are numerous good applications around for doing this and our purchasing is complete, but I have been amazed during my investigations at how many organizations rely on good manners, good intentions and good luck to manage the configuration management of their organization's software assets, even in light of the Sarbanes-Oxley Act of 2002 (SOX) that affects US companies (I am in Australia). Organizations outside of the USA, without SOX implications, are usually still concerned about the quality of their software. What do my fellow Slashdot readers consider to be the best practices for configuration management?"
This discussion has been archived. No new comments can be posted.

Improving Software Configuration Management?

Comments Filter:
  • Tripwire+CFEngine (Score:3, Informative)

    by Asgard ( 60200 ) * <jhmartin-s-5f7bbb@toger.us> on Friday March 24, 2006 @12:51PM (#14988663) Homepage
    Combine a Tripwire [tripwire.com]-like tool with a computer-immune-system like CFEngine [cfengine.org], add in a Change Control workflow that isn't too painful and you'll be in good shape. Reconcile the Tripwire reports with the change control paperwork to check that changes are being properly recorded in the workflow.
  • by suso ( 153703 ) * on Friday March 24, 2006 @12:57PM (#14988718) Journal
    I would recommend using RCS for tracking changes of config files. CVS is based on it, but RCS allows you to work better with just single files instead of entire directories and sets of source codes. Just create an RCS directory in the directory that the config file is in, and do this:

    ci -u configfile

    when you want to edit:

    co -l configfile

    check it back in:

    ci -u configfile

    Easy enough.

There are two ways to write error-free programs; only the third one works.

Working...