From a3f9f1cb39b35268f8f65dcee044b835f6f0027a Mon Sep 17 00:00:00 2001 From: gahusb Date: Sat, 11 Apr 2026 14:23:52 +0900 Subject: [PATCH] =?UTF-8?q?fix(deploy):=20agent-office=EB=A5=BC=20?= =?UTF-8?q?=EB=B0=B0=ED=8F=AC=20rsync=20=EB=8C=80=EC=83=81=EC=97=90=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit deploy-nas.sh의 rsync/chown 루프에 agent-office 디렉토리가 누락되어 NAS 런타임에 복사되지 않던 문제 수정. Co-Authored-By: Claude Opus 4.6 --- scripts/deploy-nas.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy-nas.sh b/scripts/deploy-nas.sh index f5d067b..af70c9f 100644 --- a/scripts/deploy-nas.sh +++ b/scripts/deploy-nas.sh @@ -32,7 +32,7 @@ cd "$SRC" # backend, travel-proxy, deployer, nginx, scripts, docker-compose.yml, .env 등 RSYNC_OPTS="-rl --delete --no-owner --no-group --exclude .git --exclude __pycache__ --exclude *.pyc --exclude data/" -for dir in backend travel-proxy deployer stock-lab music-lab blog-lab realestate-lab nginx scripts; do +for dir in backend travel-proxy deployer stock-lab music-lab blog-lab realestate-lab agent-office nginx scripts; do rsync $RSYNC_OPTS "$SRC/$dir/" "$DST/$dir/" || { rc=$? if [ $rc -ne 23 ]; then @@ -58,7 +58,7 @@ DEPLOY_GROUP="users" DEPLOY_MODE="755" echo "Setting ownership ${DEPLOY_USER}:${DEPLOY_GROUP} and mode ${DEPLOY_MODE}..." -for dir in backend travel-proxy deployer stock-lab music-lab blog-lab realestate-lab nginx scripts; do +for dir in backend travel-proxy deployer stock-lab music-lab blog-lab realestate-lab agent-office nginx scripts; do chown -R "${DEPLOY_USER}:${DEPLOY_GROUP}" "$DST/$dir/" 2>/dev/null || true chmod -R "$DEPLOY_MODE" "$DST/$dir/" 2>/dev/null || true done