summaryrefslogtreecommitdiffstats
path: root/config/cobblerd_rotate
blob: c7a8b19fd831107d37e79bb98cf4ff180aa1b449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/var/log/cobbler/cobbler.log {
   missingok
   notifempty
   rotate 4
   weekly
   postrotate
      if [ -f /var/lock/subsys/cobblerd ]; then
         /etc/init.d/cobblerd condrestart
      fi
   endscript
}

/var/log/cobbler/webui.log {
   missingok
   notifempty
   rotate 4
   weekly
   postrotate
      if [ -f /var/lock/subsys/cobblerd ]; then
         /etc/init.d/cobblerd condrestart
      fi
   endscript
}

/var/log/cobbler/install.log {
   missingok
   notifempty
   rotate 4
   weekly
}