Rich Shepard wrote: > In general, is it a good practice to set config files (such as > /etc/httpd/httpd.conf) to 444 once they are properly structured? > > Rich > > _______________________________________________ > PLUG mailing list > [email protected] > http://lists.pdxlinux.org/mailman/listinfo/plug > > Rich,
I use RCS to control my configuration files. This gives me "backup" copies and a history of changes. I use a simple script to keep me honest. I understand you use emacs, but I well not hold that against you. Simple bash script: #/bin/bash /bin/ci -u $@ /bin/co -l $@ /bin/vim $@ /bin/ci -u $@ I guess you will substitute emacs for vim. See above comment. Ken _______________________________________________ PLUG mailing list [email protected] http://lists.pdxlinux.org/mailman/listinfo/plug
