Fix: code and shell stuff
This commit is contained in:
parent
2715a87c64
commit
388130ca6d
2 changed files with 10 additions and 4 deletions
|
@ -28,7 +28,7 @@ ansible-playbook -i host.targets -v site.yml --limit hostname
|
|||
|
||||
To tell Jinja2 to not mess with carriage return in templates add
|
||||
|
||||
```
|
||||
```jinja
|
||||
#jinja2: trim_blocks:False
|
||||
---
|
||||
```
|
||||
|
|
|
@ -4,12 +4,18 @@
|
|||
|
||||
### CSR
|
||||
|
||||
openssl req -text -noout -verify -in request.csr
|
||||
```shell
|
||||
openssl req -text -noout -verify -in request.csr
|
||||
```
|
||||
|
||||
### Key
|
||||
|
||||
openssl rsa -in privkey.key -check
|
||||
```shell
|
||||
openssl rsa -in privkey.key -check
|
||||
```
|
||||
|
||||
### Cert
|
||||
|
||||
openssl x509 -in certficate.crt -text -noout
|
||||
```shell
|
||||
openssl x509 -in certficate.crt -text -noout
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue