diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-07-28 20:17:31 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-07-28 20:33:21 +0200 |
commit | c607297c5f8486b0bb8d6dc2ffac4f254ca5e8eb (patch) | |
tree | ed85c5d1d622cce0581eb49f9b17ab7c8f949124 /community/roundcubemail/roundcubemail.logrotate | |
parent | f9709870e5deb3bf57ca3ae6e31da864905f0a3c (diff) | |
download | aports-c607297c5f8486b0bb8d6dc2ffac4f254ca5e8eb.tar.bz2 aports-c607297c5f8486b0bb8d6dc2ffac4f254ca5e8eb.tar.xz |
community/roundcubemail: fix logrotate files pattern
Roundcube creates files without .log suffix.
Diffstat (limited to 'community/roundcubemail/roundcubemail.logrotate')
-rw-r--r-- | community/roundcubemail/roundcubemail.logrotate | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/community/roundcubemail/roundcubemail.logrotate b/community/roundcubemail/roundcubemail.logrotate index 649bef0d1f..5b277c9ecc 100644 --- a/community/roundcubemail/roundcubemail.logrotate +++ b/community/roundcubemail/roundcubemail.logrotate @@ -1,6 +1,6 @@ -/var/log/roundcube/*.log { - daily - rotate 7 +/var/log/roundcube/* { compress copytruncate + missingok + notifempty } |