为什么 inotifywait -m 运行多次?(无限循环)

为什么 inotifywait -m 运行多次?(无限循环)

我有一个post-receive如下所示的 git 脚本:

#!/bin/bash

export GIT_WORK_TREE=/home/git/worktree

mkdir -p $GIT_WORK_TREE

while read oldrev newrev refname
do

  # ensure the working copy is set up correctly
  git checkout -f master || exit 1
  git reset --hard $newrev || exit 1

  cd $GIT_WORK_TREE

  # build the apps
  ./gradlew bootRepackage

  # install the jars
  cp foo-web/build/libs/foo-web.jar /opt/foo-staging/git-deploy/
  cp foo-scheduler/build/libs/foo-scheduler.jar /opt/foo-staging/git-deploy/

done

echo 2

exit 0

然后我有另一个脚本,我试图使用它(以 root 身份)来监视git-deploy目录,以便我可以使用正确的权限将 jar 文件部署到适当的位置:

#!/bin/bash

DEPLOY_FROM_DIR=/opt/foo-staging/git-deploy
STAGING_DIR=/opt/foo-staging

/usr/bin/inotifywait -m -q --event "MODIFY,CREATE" --format '%w%f' "$DEPLOY_FROM_DIR" |
while read f; do
        noext=${f%.jar}
        svcname=${noext/foo-/foo-staging-}
        echo $svcname
        install -o foo -g foo -m 600 "$f" "$STAGING_DIR/"
        echo "Installed $f to $STAGING_DIR"
done

但出于某种原因,在单次上传时,while 循环的内容会反复运行,无限期地产生输出。我做错了什么?

免责声明:我是一名软件开发人员,不是管理员。Bash(可能很明显)不是我的强项。

答案1

man inotifywait

-m- 监视器:不是在收到单个事件后就退出,无限期执行。默认行为是在第一个事件发生后退出。

相关内容