Fix readme numbering

This commit is contained in:
Sven Seeberg 2020-03-24 17:49:10 +01:00
parent 5c0a81cd96
commit 20370e41dd
Signed by: sven.seeberg
GPG Key ID: 29559DD5A83806B5
1 changed files with 4 additions and 5 deletions

View File

@ -22,7 +22,7 @@ MIT
gpg --import /etc/salt/passbolt_private.asc
```
5. Create a `/etc/salt/passbolt.ini` file with the following content:
6. Create a `/etc/salt/passbolt.ini` file with the following content:
```
[PASSBOLT]
SERVER = https://passbolt.example.com
@ -33,13 +33,13 @@ MIT
PASSPHRASE = [REPLACE WITH PASSBOLT USER PASSWORD]
```
6. Change file permissions:
7. Change file permissions:
```
chown salt /etc/salt/passbolt*
chmod 600 /etc/salt/passbolt*
```
7. Create Pillar sls files where required with the content, replace the group UUID. Look into the example directory. Hint: you can find the Group UUID with the network tool of the browser by clicking on a group.
8. Create Pillar sls files where required with the content, replace the group UUID. Look into the example directory. Hint: you can find the Group UUID with the network tool of the browser by clicking on a group.
```
#!py
def run():
@ -47,8 +47,7 @@ MIT
return fetch_passbolt_passwords("27b9abd4-af9b-4c9e-9af1-cf8cb963680c")
```
8. In state, reference secrets with their UUID. See the `example/salt/important_secrets/files/secret.conf`. Hint: you can find the secret UUID in the URL of your browser by clicking on the checkbox of a secret.
9. In state, reference secrets with their UUID. See the `example/salt/important_secrets/files/secret.conf`. Hint: you can find the secret UUID in the URL of your browser by clicking on the checkbox of a secret.
```
password={{ pillar['passbolt']['3ec2a739-8e51-4c67-89fb-4bbfe9147e17'] }}
```