# netops operational + debug logs in the state dir. netopsd (the long-running
# broker daemon) holds netops.log open for its whole lifetime, and the
# per-minute monitor timers append frequently, so we rotate IN PLACE with
# copytruncate rather than rename+create — no need to signal or restart the
# daemon, and no lost file handle. su netops netops: the state dir is
# netops:netops (2770), so rotate as that user.
/var/log/netops/netops.log /var/log/netops/netops-debug.log {
    weekly
    rotate 52
    compress
    delaycompress
    missingok
    notifempty
    copytruncate
    su netops netops
}
