~ubuntu-branches/ubuntu/trusty/syslog-ng/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/syslog-ng.logrotate

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS), Gergely Nagy
  • Date: 2011-10-11 14:30:48 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20111011143048-r1iljux9xbvj3lwh
Tags: 3.3.1.dfsg-1
* New upstream release with important fixes from upstream git tree with
  non-free manpages removed.
* Drop syslog-ng.conf(5) (closes: #496521).
* syslog-ng(8) is generated, and does not mention -Q anymore
  (closes: #616069).
* Supports CAP_SYSLOG on recent kernels (closes: #630172).
* Does not use g_timeout_add_seconds anymore (closes: #609154).

[ Gergely Nagy <algernon@madhouse-project.org> ]
* Update debian/copyright to DEP-5 format.
* Simplified the logrotate file by merging identical entries.
* Include local configuration files from /etc/syslog-ng/conf.d/ (Closes:
  #609050).
* Update syslog-ng.conf to be fully 3.3 compliant.
* Compress both source and binaries (except the syslog-ng meta
  package) with xz, instead of gzip.
* Use dpkg triggers to restart syslog-ng when appropriate.
* Include DFSG-free manual pages for all binaries.
* Build with Hardening enabled.
* Mention syslog(3) in /etc/default/syslog-ng, instead of
  <linux/kernel.h> (Closes: #608605)
* Support 'status' in the init script.
  Patch from Peter Eisentraut <petere@debian.org> (Closes: #644458)
* Build-Depend on libevtlog-dev (>= 0.2.12-5~) for correct shlibs.
* Use [linux-any] in Build-Depends instead of hardcoded links.
  (Closes: #634715)
* Use $SYSLOGNG_OPTS in the init script when reloading syslog-ng.
  (Closes: #589081)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/var/log/auth.log {
2
 
   rotate 4
3
 
   missingok
4
 
   notifempty
5
 
   weekly
6
 
   compress
7
 
   delaycompress
8
 
}
9
 
 
10
 
/var/log/cron.log {
11
 
   rotate 4
12
 
   weekly
13
 
   missingok
14
 
   notifempty
15
 
   compress
16
 
   delaycompress
17
 
}
18
 
 
19
 
/var/log/daemon.log {
20
 
   rotate 7
21
 
   weekly
22
 
   missingok
23
 
   notifempty
24
 
   compress
25
 
   delaycompress
26
 
}
27
 
 
28
 
/var/log/debug {
29
 
   rotate 4
30
 
   weekly
31
 
   missingok
32
 
   notifempty
33
 
   compress
34
 
   delaycompress
35
 
}
36
 
 
37
 
/var/log/kern.log {
38
 
   rotate 4
39
 
   weekly
40
 
   missingok
41
 
   notifempty
42
 
   compress
43
 
   delaycompress
44
 
}
45
 
 
46
 
/var/log/lpr.log {
47
 
   rotate 4
48
 
   weekly
49
 
   missingok
50
 
   notifempty
51
 
   compress
52
 
   delaycompress
53
 
}
54
 
 
55
 
/var/log/mail.err {
56
 
   rotate 4
57
 
   weekly
58
 
   missingok
59
 
   notifempty
60
 
   compress
61
 
   delaycompress
62
 
}
63
 
 
64
 
/var/log/mail.info {
65
 
   rotate 4
66
 
   weekly
67
 
   missingok
68
 
   notifempty
69
 
   compress
70
 
   delaycompress
71
 
}
72
 
 
73
 
/var/log/mail.log {
74
 
   rotate 4
75
 
   weekly
76
 
   missingok
77
 
   notifempty
78
 
   compress
79
 
   delaycompress
80
 
}
81
 
 
82
 
/var/log/mail.warn {
83
 
   rotate 4
84
 
   weekly
85
 
   missingok
86
 
   notifempty
87
 
   compress
88
 
   delaycompress
89
 
}
90
 
 
91
 
/var/log/error {
92
 
   rotate 4
93
 
   weekly
94
 
   missingok
95
 
   notifempty
96
 
   compress
97
 
   delaycompress
98
 
}
99
 
 
100
 
/var/log/messages {
101
 
   rotate 4
102
 
   weekly
103
 
   missingok
104
 
   notifempty
105
 
   compress
106
 
   delaycompress
107
 
}
108
 
 
109
 
 
110
 
/var/log/user.log {
111
 
   rotate 4
112
 
   weekly
113
 
   missingok
114
 
   notifempty
115
 
   compress
116
 
   delaycompress
117
 
}
118
 
 
119
 
/var/log/uucp.log {
120
 
   rotate 4
121
 
   missingok
122
 
   notifempty
123
 
   weekly
124
 
   compress
125
 
   delaycompress
126
 
}
127
 
 
128
 
/var/log/syslog {
129
 
   rotate 7
130
 
   daily
131
 
   compress
132
 
   delaycompress
133
 
   postrotate
134
 
      /usr/sbin/invoke-rc.d syslog-ng reload >/dev/null
135
 
   endscript
136
 
}