diff options
author | Chris Lamb <lamby@debian.org> | 2008-10-22 20:09:11 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:43 +0100 |
commit | 95b6b96d2c40d7538708d0edb5a0c37cbe1c1b95 (patch) | |
tree | 4c20c904b47b1c9a368b52fbe43c278b85b72dd1 /functions | |
parent | 568f905c51c89cddd774caa3650c3b6fba0a0c00 (diff) | |
download | vyos-live-build-95b6b96d2c40d7538708d0edb5a0c37cbe1c1b95.tar.gz vyos-live-build-95b6b96d2c40d7538708d0edb5a0c37cbe1c1b95.zip |
Add utility to dump all conffiles to stdout.
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/conffile.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/functions/conffile.sh b/functions/conffile.sh index aa12fc53d..a45f6b5e2 100755 --- a/functions/conffile.sh +++ b/functions/conffile.sh @@ -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 +} |