Fix typos in guide
This commit is contained in:
parent
9029a21de4
commit
503e6cd61a
|
@ -56,10 +56,10 @@ ansible-galaxy install -r requirements.yaml
|
||||||
+
|
+
|
||||||
[,bash]
|
[,bash]
|
||||||
----
|
----
|
||||||
ssh-keygen -a 100 -t ed25519 -C "a comment" -f ~/.ssh/id_$NEW_ANSIBLE_USER@NEW_ANSIBLE_HOST
|
ssh-keygen -a 100 -t ed25519 -C "a comment" -f ~/.ssh/id_$NEW_ANSIBLE_USER@$NEW_ANSIBLE_HOST
|
||||||
ssh-keygen -a 100 -t ed25519 -C "another comment" -f ~/.ssh/id_publisher@$NEW_ANSIBLE_HOST
|
ssh-keygen -a 100 -t ed25519 -C "another comment" -f ~/.ssh/id_publisher@$NEW_ANSIBLE_HOST
|
||||||
ssh-copy-id -i ~/.ssh/id_$NEW_ANSIBLE_USER@NEW_ANSIBLE_HOST $NEW_ANSIBLE_USER@$NEW_ANSIBLE_HOST
|
ssh-copy-id -i ~/.ssh/id_$NEW_ANSIBLE_USER@$NEW_ANSIBLE_HOST $NEW_ANSIBLE_USER@$NEW_ANSIBLE_HOST
|
||||||
ssh-add ~/.ssh/id_$NEW_ANSIBLE_USER@NEW_ANSIBLE_HOST # optional, to remember key-phrase
|
ssh-add ~/.ssh/id_$NEW_ANSIBLE_USER@$NEW_ANSIBLE_HOST # optional, to remember key-phrase
|
||||||
----
|
----
|
||||||
|
|
||||||
. Add the host to the inventory `nano inventory.yaml` (keep other entries)
|
. Add the host to the inventory `nano inventory.yaml` (keep other entries)
|
||||||
|
@ -87,7 +87,7 @@ cp host_vars/variables.yaml.template host_vars/$NEW_ANSIBLE_HOST/variables.yaml
|
||||||
+
|
+
|
||||||
[,bash]
|
[,bash]
|
||||||
----
|
----
|
||||||
ansible-vault encrypt host_vars/secrets.yaml.template --output host_vars/$NEW_ANSIBLE_HOST/secrets.yaml`
|
ansible-vault encrypt host_vars/secrets.yaml.template --output host_vars/$NEW_ANSIBLE_HOST/secrets.yaml
|
||||||
----
|
----
|
||||||
|
|
||||||
. Edit the vault
|
. Edit the vault
|
||||||
|
|
Loading…
Reference in New Issue