From 23c5e990b6b6fe9dbc8fff1f2df5f3da9bc557e1 Mon Sep 17 00:00:00 2001 From: Mike Delago <32778141+michaeldelago@users.noreply.github.com> Date: Fri, 25 Aug 2023 16:02:21 -0400 Subject: fix(Apps/Docker): ensure conf files always exist (#17071) --- apps/compiler/includes/functions.sh | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'apps/compiler/includes/functions.sh') diff --git a/apps/compiler/includes/functions.sh b/apps/compiler/includes/functions.sh index 7435e655e0..5929816f92 100644 --- a/apps/compiler/includes/functions.sh +++ b/apps/compiler/includes/functions.sh @@ -143,6 +143,15 @@ function comp_compile() { find "$AC_BINPATH_FULL" -mindepth 1 -maxdepth 1 -type f -exec sudo chown root:root -- {} + find "$AC_BINPATH_FULL" -mindepth 1 -maxdepth 1 -type f -exec sudo chmod u+s -- {} + + if [[ -n "$DOCKER" ]]; then + [[ -f "$confDir/worldserver.conf.dist" ]] && \ + cp -nv "$confDir/worldserver.conf.dist" "$confDir/worldserver.conf" + [[ -f "$confDir/authserver.conf.dist" ]] && \ + cp -nv "$confDir/authserver.conf.dist" "$confDir/authserver.conf" + [[ -f "$confDir/dbimport.conf.dist" ]] && \ + cp -nv "$confDir/dbimport.conf.dist" "$confDir/dbimport.conf" + fi + echo "Done" ;; esac -- cgit v1.2.3