|
2 | 2 | .\" |
3 | 3 | .\" SPDX-License-Identifier: ISC |
4 | 4 | .\" |
5 | | -.\" Copyright (c) 2019-2024 Todd C. Miller <[email protected]> |
| 5 | +.\" Copyright (c) 2019-2025 Todd C. Miller <[email protected]> |
6 | 6 | .\" |
7 | 7 | .\" Permission to use, copy, modify, and distribute this software for any |
8 | 8 | .\" purpose with or without fee is hereby granted, provided that the above |
|
16 | 16 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
17 | 17 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
18 | 18 | .\" |
19 | | -.TH "SUDO_LOGSRVD" "@mansectsu@" "July 14, 2024" "Sudo @PACKAGE_VERSION@" "System Manager's Manual" |
| 19 | +.TH "SUDO_LOGSRVD" "@mansectsu@" "September 21, 2025" "Sudo @PACKAGE_VERSION@" "System Manager's Manual" |
20 | 20 | .nh |
21 | 21 | .if n .ad l |
22 | 22 | .SH "NAME" |
@@ -176,7 +176,7 @@ for this purpose. |
176 | 176 | # cd /etc/ssl/sudo |
177 | 177 | # mkdir certs csr newcerts private |
178 | 178 | # chmod 700 private |
179 | | -# touch index.txt |
| 179 | +# touch index.txt index.txt.attr |
180 | 180 | # echo 1000 > serial |
181 | 181 | .RE |
182 | 182 | .fi |
@@ -217,9 +217,23 @@ default_ca = CA_default |
217 | 217 | dir = /etc/ssl/sudo |
218 | 218 | certs = $dir/certs |
219 | 219 | database = $dir/index.txt |
| 220 | +private_key = $dir/private/cakey.pem |
220 | 221 | certificate = $dir/cacert.pem |
| 222 | +new_certs_dir = $dir/newcerts |
221 | 223 | serial = $dir/serial |
222 | 224 |
|
| 225 | +# CA policy if you don't have one defined already. |
| 226 | +policy = policy_loose |
| 227 | + |
| 228 | +[ policy_loose ] |
| 229 | +# See POLICY FORMAT section in the "openssl-ca" manual. |
| 230 | +countryName = optional |
| 231 | +stateOrProvinceName = optional |
| 232 | +organizationName = optional |
| 233 | +organizationalUnitName = optional |
| 234 | +commonName = supplied |
| 235 | +emailAddress = optional |
| 236 | + |
223 | 237 | [ v3_ca ] |
224 | 238 | subjectKeyIdentifier = hash |
225 | 239 | authorityKeyIdentifier = keyid:always,issuer |
|
0 commit comments