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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
diff -u -r --new-file logrotate-3.7.4.orig/config.c logrotate-3.7.4/config.c
--- logrotate-3.7.4.orig/config.c 2006-07-24 07:08:04.000000000 -0500
+++ logrotate-3.7.4/config.c 2006-09-21 01:07:50.000000000 -0500
@@ -29,7 +29,7 @@
#define isblank(c) ( (c) == ' ' || (c) == '\t' ) ? 1 : 0
#endif
-static char *defTabooExts[] = { ".rpmsave", ".rpmorig", "~", ",v",
+static char *defTabooExts[] = { ".new", ".rpmsave", ".rpmorig", "~", ",v",
".rpmnew", ".swp"
};
static int defTabooCount = sizeof(defTabooExts) / sizeof(char *);
diff -u -r --new-file logrotate-3.7.4.orig/config.h logrotate-3.7.4/config.h
--- logrotate-3.7.4.orig/config.h 2005-11-12 13:07:56.000000000 -0600
+++ logrotate-3.7.4/config.h 2006-09-21 01:08:02.000000000 -0500
@@ -36,5 +36,5 @@
#endif
#ifndef STATEFILE
-#define STATEFILE "/var/lib/logrotate.status"
+#define STATEFILE "/var/lib/logrotate/status"
#endif
diff -u -r --new-file logrotate-3.7.4.orig/logrotate.8 logrotate-3.7.4/logrotate.8
--- logrotate-3.7.4.orig/logrotate.8 2006-05-17 09:46:51.000000000 -0500
+++ logrotate-3.7.4/logrotate.8 2006-09-21 01:07:14.000000000 -0500
@@ -1,4 +1,4 @@
-.TH LOGROTATE 8 "Wed Nov 5 2002" "Red Hat Linux" "System Administrator's Manual"
+.TH LOGROTATE 8 "Wed Nov 5 2002" "Linux" "System Administrator's Manual"
.SH NAME
logrotate \- rotates, compresses, and mails system logs
.SH SYNOPSIS
@@ -410,7 +410,7 @@
for information on the taboo extensions). If a + precedes the list of
extensions, the current taboo extension list is augmented, otherwise it
is replaced. At startup, the taboo extension list
-contains .rpmorig, .rpmsave, ,v, .swp, .rpmnew, and ~.
+contains .new, .rpmorig, .rpmsave, ,v, .swp, .rpmnew, and ~.
.TP
\fBweekly\fR
@@ -427,7 +427,7 @@
.SH FILES
.PD 0
.TP 27
-\fI/var/lib/logrotate.status\fR
+\fI/var/lib/logrotate/status\fR
Default state file.
.TP 27
\fI/etc/logrotate.conf\fR
|