mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-12-21 07:07:05 +00:00
adding a new script archive_conf_files.sh to dump the contents of all files modified by editconf.py so testing is easier
This commit is contained in:
parent
ca34c1b1ae
commit
ad520b45ff
9
tools/archive_conf_files.sh
Normal file
9
tools/archive_conf_files.sh
Normal file
@ -0,0 +1,9 @@
|
||||
# Use this script to make an archive of the contents of all
|
||||
# of the configuration files we edit with editconf.py.
|
||||
for fn in `grep -hr editconf.py setup | sed "s/tools\/editconf.py //" | sed "s/ .*//" | sort | uniq`; do
|
||||
echo ======================================================================
|
||||
echo $fn
|
||||
echo ======================================================================
|
||||
cat $fn
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user