From a56fc9950515207305c7debd2ad9cdfdfad9e560 Mon Sep 17 00:00:00 2001 From: Pierre Riteau Date: Mon, 17 Feb 2025 22:38:16 +0100 Subject: [PATCH] Fix some typos --- dev/ansible-ssh | 2 +- docs/production.md | 2 +- environments/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/ansible-ssh b/dev/ansible-ssh index f3ec10000..1e7bf756a 100755 --- a/dev/ansible-ssh +++ b/dev/ansible-ssh @@ -11,7 +11,7 @@ import os from collections import defaultdict def _optional_arg(prototype, *values): - # returns empty string if any of the the values are falsey + # returns empty string if any of the values are falsey filtered = [value for value in values if value] return prototype.format(*values) if len(values) == len(filtered) else "" diff --git a/docs/production.md b/docs/production.md index d9a2bb159..f1a830bec 100644 --- a/docs/production.md +++ b/docs/production.md @@ -67,7 +67,7 @@ and referenced from the `site` and `production` environments, e.g.: - Vault-encrypt secrets. Running the `generate-passwords.yml` playbook creates a secrets file at `environments/$ENV/inventory/group_vars/all/secrets.yml`. To ensure staging environments are a good model for production this should - generally be moved into the `site` environment. It should be be encrypted + generally be moved into the `site` environment. It should be encrypted using [Ansible vault](https://docs.ansible.com/ansible/latest/user_guide/vault.html) and then committed to the repository. diff --git a/environments/README.md b/environments/README.md index c4eae3b31..722c358ba 100644 --- a/environments/README.md +++ b/environments/README.md @@ -94,7 +94,7 @@ varibles are set e.g role variables for the `stackhpc.nfs` role can be found in ## Parent pointers -As the environments form a chain, a symlink pointing to the parent can be be created. +As the environments form a chain, a symlink pointing to the parent can be created. `ln -s ../common/ parent`