Changes for page Icinga 2

Last modified by Sebastian Marsching on 2022/04/03 22:58

From version 2.1
edited by Sebastian Marsching
on 2022/04/03 22:58
Change comment: There is no comment for this version
To version 1.2
edited by Sebastian Marsching
on 2022/04/03 14:08
Change comment: Added tag [Linux,Network]

Summary

Details

Page properties
Content
... ... @@ -15,6 +15,7 @@
15 15  echo "unique_subject = no" >index.txt.attr
16 16  echo "0000" >crlnumber.txt
17 17  touch crl.pem
18 +
18 18  ```
19 19  
20 20  Next, we create the configuration file for OpenSSL as `/var/lib/icinga2/ca/crl/openssl.cnf`:
... ... @@ -46,8 +46,6 @@
46 46  
47 47  Finally, we want two shell scripts. One for generating the CRL and one for revoking a certificate.
48 48  
49 -`/var/lib/icinga2/ca/crl/gen-crl.sh`:
50 -
51 51  ```bash
52 52  #!/bin/bash
53 53  
... ... @@ -69,8 +69,6 @@
69 69  openssl ca -config "$BASE_DIR/openssl.cnf" -gencrl -out "$BASE_DIR/crl.pem"
70 70  ```
71 71  
72 -`/var/lib/icinga2/ca/crl/revoke.sh`:
73 -
74 74  ```bash
75 75  #!/bin/bash
76 76