Fix: code and shell stuff

This commit is contained in:
Wilfried OLLIVIER 2019-07-07 21:21:48 +02:00
parent 2715a87c64
commit 388130ca6d
2 changed files with 10 additions and 4 deletions

View File

@ -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
---
```

View File

@ -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
```