Correct exclude command

This commit is contained in:
Andreas Zweili 2024-02-11 20:00:47 +01:00
parent e1abd090c5
commit 988174b826
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ in
onFailure = [ "unit-status-telegram@%n.service" ];
wantedBy = [ "multi-user.target" ];
script = ''
${pkgs.inotify-tools}/bin/inotifywait -m -r -e create,modify,delete,move --exclude '\.sync_*\.db*' "${pathToMonitor}" |
${pkgs.inotify-tools}/bin/inotifywait -m -r -e create,modify,delete,move --excludei '\.sync.*\.db.*' "${pathToMonitor}" |
while read -r directory event file; do
sleep 10
echo "triggered because of $event on $file in $directory"