Skip to content

Fix some typos #583

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev/ansible-ssh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""

Expand Down
2 changes: 1 addition & 1 deletion docs/production.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion environments/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
Loading