mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 15:29:36 +00:00
17 lines
373 B
Plaintext
17 lines
373 B
Plaintext
# Install to: /etc/logrotate.d/dealix
|
|
# تدوير سجلات Dealix يومياً مع ضغط واستبقاء 14 يوماً
|
|
|
|
/var/log/dealix/*.log {
|
|
daily
|
|
rotate 14
|
|
compress
|
|
delaycompress
|
|
missingok
|
|
notifempty
|
|
create 0640 dealix dealix
|
|
sharedscripts
|
|
postrotate
|
|
systemctl reload dealix-api >/dev/null 2>&1 || true
|
|
endscript
|
|
}
|