1

Возможно ли с помощью logrotate взять содержимое журнала и добавить его в существующий файл?

Вот так:
1. Поместите содержимое /var/log/vnc.log после содержимого /archive/logs/vnc.log
2. Усечение /var/log/vnc.log

В bash это будет выглядеть так:
1. cat /var/log/vnc.log >> /archive/logs/vnc.log
2. echo> /var/log/vnc.log

Я думаю, что это невозможно. Что было бы логичным способом тогда? Вышеуказанные команды в cronjob? Или эта установка слишком грязная?

1 ответ1

3

Со страницы руководства logrotate:

 prerotate/endscript
          The  lines  between  prerotate and endscript (both of which must
          appear on lines by  themselves)  are  executed  (using  /bin/sh)
          before the log file is rotated and only if the log will actually
          be rotated. These directives may only appear inside a  log  file
          definition.  Normally,  the  absolute  path  to  the log file is
          passed as first argument to the script.   If   sharedscripts  is
          specified,  whole  pattern  is  passed  to the script.  See also
          postrotate.  See sharedscripts  and  nosharedscripts  for  error
          handling.

Итак, вы должны добавить такую запись в logrotate.conf:

/var/log/vnc.log 
{
  rotate 6
  monthly
  compress
  missingok
  prerotate
      cat /var/log/vnc.log >> /archive/logs/vnc.log
  endscript
}

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .