xinetd postrotate logrotateスクリプト

xinetd postrotate logrotateスクリプト

xinetd.logファイルを回転させるのに役立ちます。 CentOS8を使用しており、次のlogrotateファイルがあります。

/var/log/xinetd.log {
    compress
    dateext
    daily
    rotate 7
    missingok
    copytruncate
    postrotate
    /etc/init.d/xinetd reload
    endscript
}

ただし、「回転後のエラー」またはその他のエラーが発生し、デバッグを実行するとログが失われます。しかし、職務循環が効果がないことを知っています。

私の主な質問は、回転後にxinetdサービスを再起動するために回転ポストを作成する方法です。

ベストアンサー1

おすすめ記事