diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-06-07 14:15:28 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-06-07 14:15:28 +0000 |
commit | 97caf2b68cdfcda623e45225d3cb489db4d32992 (patch) | |
tree | 8936fea07234c4cff29d4245423c8f7b4e2bfb43 /sbin | |
parent | 1730cfbaac76a7d57ca69939b71374c56eaa035c (diff) |
switch iked pki files to /etc/iked, discussed with reyk.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/iked/iked.8 | 14 | ||||
-rw-r--r-- | sbin/iked/types.h | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/sbin/iked/iked.8 b/sbin/iked/iked.8 index daa6daa5e61..6b49148b64f 100644 --- a/sbin/iked/iked.8 +++ b/sbin/iked/iked.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: iked.8,v 1.2 2010/06/07 10:07:44 jmc Exp $ +.\" $OpenBSD: iked.8,v 1.3 2010/06/07 14:15:27 jsg Exp $ .\" $vantronix: iked.8,v 1.5 2010/06/02 14:38:08 reyk Exp $ .\" .\" Copyright (c) 2010 Reyk Floeter <reyk@vantronix.net> @@ -74,26 +74,26 @@ Disable NAT-Traversal and do not propose NAT-Traversal support to the peers. Produce more verbose output. .El .Sh FILES -.Bl -tag -width "/etc/isakmpd/private/XXX" -compact +.Bl -tag -width "/etc/iked/private/XXX" -compact .It Pa /etc/iked.conf The default .Nm configuration file. -.It Pa /etc/isakmpd/ca/ +.It Pa /etc/iked/ca/ The directory where CA certificates are kept. -.It Pa /etc/isakmpd/certs/ +.It Pa /etc/iked/certs/ The directory where IKE certificates are kept, both the local certificate(s) and those of the peers, if a choice to have them kept permanently has been made. -.It Pa /etc/isakmpd/crls/ +.It Pa /etc/iked/crls/ The directory where CRLs are kept. -.It Pa /etc/isakmpd/private/ +.It Pa /etc/iked/private/ The directory where local private keys used for public key authentication are kept. The file .Pa local.key is used to store the local private key. -.It Pa /etc/isakmpd/pubkeys/ +.It Pa /etc/iked/pubkeys/ The directory in which trusted public keys are kept. The keys must be named in the fashion described above. .It Pa /var/run/iked.sock diff --git a/sbin/iked/types.h b/sbin/iked/types.h index 9eabddce7b5..3dd75dfc20f 100644 --- a/sbin/iked/types.h +++ b/sbin/iked/types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: types.h,v 1.2 2010/06/03 20:28:22 reyk Exp $ */ +/* $OpenBSD: types.h,v 1.3 2010/06/07 14:15:27 jsg Exp $ */ /* $vantronix: types.h,v 1.24 2010/05/11 12:05:56 reyk Exp $ */ /* @@ -28,7 +28,7 @@ #define IKED_SOCKET "/var/run/iked.sock" #ifndef IKED_CA -#define IKED_CA "/etc/isakmpd/" +#define IKED_CA "/etc/iked/" #endif #define IKED_CA_DIR "ca/" #define IKED_CRL_DIR "crls/" |