/var/log/flumotion/*.log {
    missingok
    notifempty
    sharedscripts
    postrotate
        find /var/run/flumotion -type f -print | while read f; do
            /usr/bin/kill -HUP `cat $f 2>/dev/null` 2>/dev/null || true
        done
    endscript
}

