lint: Appease the linting gods

This commit is contained in:
Brennan Kinney 2024-01-15 19:53:16 +13:00 committed by GitHub
parent 4ae9a5b621
commit 84e951dc91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ function _setup_post() {
# Dovecot `.svbin` files must have a newer mtime than their `.sieve` source files, # Dovecot `.svbin` files must have a newer mtime than their `.sieve` source files,
# Modifications during setup to these files sometimes results in a common mtime value. # Modifications during setup to these files sometimes results in a common mtime value.
# Handled during post-setup as setup of Dovecot Sieve scripts is not centralized. # Handled during post-setup as setup of Dovecot Sieve scripts is not centralized.
find /usr/lib/dovecot/ -iname *.sieve -exec touch -d '2 seconds ago' {} + find /usr/lib/dovecot/ -iname '*.sieve' -exec touch -d '2 seconds ago' {} +
find /usr/lib/dovecot/ -iname *.svbin -exec touch -d '1 seconds ago' {} + find /usr/lib/dovecot/ -iname '*.svbin' -exec touch -d '1 seconds ago' {} +
# All startup modifications to configs should have taken place before calling this: # All startup modifications to configs should have taken place before calling this:
_prepare_for_change_detection _prepare_for_change_detection