Add utility to dump all conffiles to stdout.

This commit is contained in:
Chris Lamb 2008-10-22 20:09:11 +01:00 committed by Daniel Baumann
parent 568f905c51
commit 95b6b96d2c
1 changed files with 10 additions and 0 deletions

View File

@ -43,3 +43,13 @@ Read_conffile ()
fi
done
}
Print_conffiles () {
for CONFFILE in Get_conffiles "${@}"
do
if [ -f "${CONFFILE}" ]
then
Echo_file "${CONFFILE}"
fi
done
}