Logrotate anexar ao arquivo existente e truncar original

1

É possível com o logrotate pegar o conteúdo de um log e adicioná-lo a um arquivo existente?

Como assim:
 1. Coloque o conteúdo de /var/log/vnc.log após o conteúdo de /archive/logs/vnc.log
 2. Truncar /var/log/vnc.log

No bash, seria como:
 1. cat /var/log/vnc.log > > /archive/logs/vnc.log
 2. echo > /var/log/vnc.log

Eu acho que não é possível. O que seria um caminho lógico então? Os comandos acima em um cronjob? Ou esta configuração está muito suja?

    
por Sat 22.09.2013 / 15:37

1 resposta

3

Da página de manual do 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.

Então, você deve adicionar uma entrada como esta no logrotate.conf:

/var/log/vnc.log 
{
  rotate 6
  monthly
  compress
  missingok
  prerotate
      cat /var/log/vnc.log >> /archive/logs/vnc.log
  endscript
}
    
por 22.09.2013 / 16:00