Using source control to manage system configs

Giorgos Keramidas keramida at ceid.upatras.gr
Sun Feb 25 22:43:26 UTC 2007


On 2007-02-26 07:01, Rob <freebsd at deathbeforedecaf.net> wrote:
> Dear List,
> 
> I'd like some advice on managing config files on multiple servers  
> with a source control system. The idea is to update files locally,  
> and commit them back to a central repository.
> 
> I know that CVS is the usual choice, but there are a couple of things  
> that I can't get CVS to do.
> 
> Overlapping directories
> -----------------------
> 
> Some files (/etc/ntp.conf, /etc/resolv.conf) are identical across a  
> site. Instead of duplicating these in the repository, I'd like to  
> create a module like
> 
>   hosts/shared/etc
> 
> that gets installed on every server.
> 
> Then each server has a module like
> 
>   hosts/$HOST/etc
> 
> that adds to or overwrites these files. If a file is updated locally,  
> it is committed back to the correct module.
> 
> CVS (quite reasonably) won't checkout 2 modules to the same working  
> directory.
> 
> Filemodes & symlinks
> --------------------
> 
> CVS only works with regular files, and doesn't preserve permissions.  
> I can work around this with mtree(8) and module programs, but it  
> would be nice to have it built-in.
> 
> So... has anyone come up with a neat way to do these things in CVS,  
> or an SCM system that does it better?

With modern SCM systems, which support easy distribution and update
tracking over distributed collections of 'workspaces', it's very
tempting to attempt to do this.

I'm still not convinced it's a good idea though.  I prefer a more
controlled model of a workspace hierarchy where changes are made by
trusted people and then a separate "install" process, which publishes,
or "pushes" if you prefer, the modified files to the deployment hosts.

I know this is now the answer you are looking for, but when evaluating
this sort of thing even a "don't do it" option should be evaluated.

- Giorgos



More information about the freebsd-questions mailing list