Merge branch 'main' into htejun/rusty

This commit is contained in:
Tejun Heo 2024-08-20 21:13:12 -10:00
commit 91213de713
2 changed files with 9 additions and 0 deletions

View File

@ -4,6 +4,9 @@ install_data('scx.initrd', install_dir: '/etc/init.d', rename: 'scx')
# Install the 'scx' file to the '/etc/default' directory
install_data('../scx', install_dir: '/etc/default')
# Install the 'scx.logrotate' file to /etc/logrotate.d/scx
install_data('scx.logrotate', install_dir: '/etc/logrotate.d', rename: 'scx')
# Symlinking /etc/default/scx to /etc/conf.d/scx
install_symlink(
'scx',

View File

@ -0,0 +1,6 @@
/var/log/scx/*.log {
missingok
minsize 4M
notifempty
copytruncate
}