diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-07-27 00:58:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-07-27 00:59:00 +0000 |
commit | 71ec84349d0f21c605d16f5334e58b31b0eeee8e (patch) | |
tree | ec9ad23b5013dba8f4d2222d368e69830f281c5c /share/hooks/pre-build.git-pull.sh | |
parent | Releasing debian version 20210726-1. (diff) | |
download | open-infrastructure-compute-tools-71ec84349d0f21c605d16f5334e58b31b0eeee8e.tar.xz open-infrastructure-compute-tools-71ec84349d0f21c605d16f5334e58b31b0eeee8e.zip |
Merging upstream version 20210727.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'share/hooks/pre-build.git-pull.sh')
-rwxr-xr-x | share/hooks/pre-build.git-pull.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/share/hooks/pre-build.git-pull.sh b/share/hooks/pre-build.git-pull.sh index 744f955..d2cc152 100755 --- a/share/hooks/pre-build.git-pull.sh +++ b/share/hooks/pre-build.git-pull.sh @@ -31,10 +31,13 @@ do then echo "Updating ${DIRECTORY}..." - if [ -e "/etc/${SOFTWARE}.conf" ] - then - . "/etc/${SOFTWARE}.conf" - fi + for FILE in "/etc/${SOFTWARE}/${PROGRAM}.conf" "/etc/${SOFTWARE}/${PROGRAM}.conf.d"/*.conf + do + if [ -e "${FILE}" ] + then + . "${FILE}" + fi + done DEBCONF_ID="${DEBCONF_ID:-HEAD}" |