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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
$NetBSD: patch-ae,v 1.1 2003/05/30 11:53:18 salo Exp $
--- man/ipa.conf.5.orig 2003-05-27 20:57:17.000000000 +0200
+++ man/ipa.conf.5 2003-05-30 12:53:00.000000000 +0200
@@ -29,7 +29,7 @@
ipa.conf \- ipa(8) configuration file
.SH DESCRIPTION
The \fBipa.conf\fP file is a configuration file for \fBipa\fP(8).
-The \fB/usr/local/etc/ipa.conf\fP file or any other one specified in
+The \fB@PKG_SYSCONFDIR@/ipa.conf\fP file or any other one specified in
the \fBipa\fP(8) command line (the \fB-f\fP option for \fBipa\fP(8)) is read
when \fBipa\fP(8) starts working or receives signal HUP.
The complete description of the file format and possible parameters
@@ -996,28 +996,28 @@
.PP
include {
.br
- file = /usr/local/etc/ipa/myaccout
+ file = @PKG_SYSCONFDIR@/ipa/myaccout
.br
- file(?) = /usr/local/etc/ipa/mytestaccount
+ file(?) = @PKG_SYSCONFDIR@/ipa//mytestaccount
.br
- files(/usr/local/etc/ipa/192.168.0) = .
+ files(@PKG_SYSCONFDIR@/ipa/192.168.0) = .
.br
- files(/usr/local/etc/ipa/10.1) = ^(2|11)\\.*
+ files(@PKG_SYSCONFDIR@/ipa/10.1) = ^(2|11)\\.*
.br
- files(?)(/usr/local/etc/ipa/testconfig) = \\.conf$
+ files(?)(@PKG_SYSCONFDIR@/ipa/testconfig) = \\.conf$
.br
}
.PP
The first \fBfile\fP parameter tells \fBipa\fP(8) to include one file named
-/usr/local/etc/ipa/myaccout. The second \fBfile\fP parameter also tells to
-include one file, but if the /usr/local/etc/ipa/mytestaccount file is not
+@PKG_SYSCONFDIR@/ipa/myaccout. The second \fBfile\fP parameter also tells to
+include one file, but if the @PKG_SYSCONFDIR@/ipa/mytestaccount file is not
present in the file system, then \fBipa\fP(8) will ignore it.
.PP
The first \fBfiles\fP parameter "includes" all files from the
-/usr/local/etc/ipa/192.168.0 directory. The second \fBfiles\fP parameter
+@PKG_SYSCONFDIR@/ipa/192.168.0 directory. The second \fBfiles\fP parameter
"includes" all files matched given POSIX regular expression from the
-/usr/local/etc/ipa/10.1 directory. And the last \fBfiles\fP parameter "includes"
-all files with ".conf" suffix from the /usr/local/etc/ipa/testconfig directory,
+@PKG_SYSCONFDIR@/ipa/10.1 directory. And the last \fBfiles\fP parameter "includes"
+all files with ".conf" suffix from the @PKG_SYSCONFDIR@/ipa/testconfig directory,
but if this directory is not present in the file system, then \fBipa\fP(8)
will ignore it and continue to work.
.PP
@@ -1286,13 +1286,10 @@
.br
# ... other "rule" sections.
.SH FILES
-/usr/local/etc/ipa.conf
+@PKG_SYSCONFDIR@/ipa.conf
.br
-${PREFIX}/etc/ipa.conf.default
-.br
-${PREFIX}/share/examples/ipa/
+@PREFIX@/share/examples/ipa/
.PP
-(by default ${PREFIX} is /usr/local)
.SH SEE ALSO
ipa(8), ipa(5), ipastat(8), ipf(1), ipf(5), ipfstat(8), ipfw(8), ip6fw(8),
pf.conf(5), pfctl(8)
|