blob: 703faf2609d4961d445c12d4dfb5dd4c65c81790 (
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 > /dev/null
fi
endscript
}
/var/log/cobbler/cobblerd.log {
missingok
notifempty
rotate 4
weekly
postrotate
if [ -f /var/lock/subsys/cobblerd ]; then
/etc/init.d/cobblerd condrestart > /dev/null
fi
endscript
}
/var/log/cobbler/install.log {
missingok
notifempty
rotate 4
weekly
}
|