diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-09-17 20:03:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-09-17 20:03:41 +0000 |
commit | dcde5f63047eca85a05c8eda16c9014533646f37 (patch) | |
tree | 52c181395c72c3852ef587e4a68d0a3f1249bfdd /usr.bin/newsyslog/newsyslog.8 | |
parent | 7d91ab525ffbd0cc1834c3ad28fa1eb40b444cae (diff) |
Add -a flag to specify a directory to store archived logs. Based on
changes I made years ago to a private version of newsyslog but with
the option renamed to match FreeBSD. Note that unlike the FreeBSD
-a flag, we don't automagically create the archive dir if it doesn't exist.
OK deraadt@ and todd@
Diffstat (limited to 'usr.bin/newsyslog/newsyslog.8')
-rw-r--r-- | usr.bin/newsyslog/newsyslog.8 | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/usr.bin/newsyslog/newsyslog.8 b/usr.bin/newsyslog/newsyslog.8 index 6984842c784..c4567844129 100644 --- a/usr.bin/newsyslog/newsyslog.8 +++ b/usr.bin/newsyslog/newsyslog.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: newsyslog.8,v 1.25 2002/09/13 19:00:08 millert Exp $ +.\" $OpenBSD: newsyslog.8,v 1.26 2002/09/17 20:03:40 millert Exp $ .\" .\" Copyright (c) 1997, Jason Downs. All rights reserved. .\" @@ -57,6 +57,7 @@ .Sh SYNOPSIS .Nm newsyslog .Op Fl mnrv +.Op Fl a Ar directory .Op Fl f Ar config_file .Sh DESCRIPTION .Nm @@ -103,6 +104,22 @@ so this option should only be used in debugging. Be verbose. In this mode it will print out each log and its reasons for either trimming that log or skipping it. +.It Fl a Ar directory +Specify a +.Ar directory +into which archived log files will be written. +If +.Ar directory +is a relative path, it is it is appended to the parent directory +of each log and the archived log is stored in the result. +If an absolute path is given, all archived logs are stored in the given +.Ar directory . +If +.Ar directory +does not exist for a specified log, it is ignored for that entry and +the log is rotated as if the +.Fl a +option was not specified. .It Fl f Ar config_file Use .Ar config_file |