GwenDragon
Registered User
Ich versuche per compress logs zu verschlüsseln.
Leider klappt das nicht immer, manche sind nicht verschlüsselt, obwohl in deren config compress drin steht.
Der relevante Schnipsel:
/etc/logrotate.conf
Lasse ich die config für compress weg, dann geht es und die Logs sind rotiert und gzipped.
Irgendeine Idee woran das liegt? Timeout? Zu große Logdateien?
Logrotate ist Version 3.14.0
Leider klappt das nicht immer, manche sind nicht verschlüsselt, obwohl in deren config compress drin steht.
Der relevante Schnipsel:
Code:
compresscmd /usr/bin/gpg
compressoptions --always-trust --encrypt --recipient your_email@domain.com
compressext .gpg
/etc/logrotate.conf
Code:
# see "man logrotate" for details
# rotate log files weekly
weekly
# keep 4 weeks worth of backlogs
rotate 4
# create new (empty) log files after rotating old ones
create
# use date as a suffix of the rotated file
#dateext
# uncomment this if you want your log files compressed
#compress
# ---- encrypt saved logs
shred
compress
compresscmd /usr/bin/gpg
compressoptions -e -r sv123456@example.com
compressext .gpg
# ---
# packages drop log rotation information into this directory
include /etc/logrotate.d
# system-specific logs may be also be configured here.
Lasse ich die config für compress weg, dann geht es und die Logs sind rotiert und gzipped.
Irgendeine Idee woran das liegt? Timeout? Zu große Logdateien?
Logrotate ist Version 3.14.0
Last edited: