Skip to content

Commit 571daf4

Browse files
authored
Fix typos discovered by codespell (#14325)
1 parent 0ce7840 commit 571daf4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

roles/cloud-hetzner/tasks/prompts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
api_token: "{{ algo_hcloud_token }}"
1818
register: _hcloud_regions
1919

20-
- name: Set facts about thre regions
20+
- name: Set facts about the regions
2121
set_fact:
2222
hcloud_regions: "{{ hcloud_datacenter_facts | sort(attribute='location') }}"
2323

roles/common/tasks/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
become: false
3737
when: algo_provider != "local"
3838

39-
- name: Include unatteded upgrades configuration
39+
- name: Include unattended upgrades configuration
4040
import_tasks: unattended-upgrades.yml
4141

4242
- name: Disable MOTD on login and SSHD

roles/common/templates/rules.v4.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ COMMIT
9595
-A FORWARD -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
9696
# Drop SMB/CIFS traffic that requests to be forwarded
9797
-A FORWARD -p tcp --dport 445 -j {{ "DROP" if block_smb else "ACCEPT" }}
98-
# Drop NETBIOS trafic that requests to be forwarded
98+
# Drop NETBIOS traffic that requests to be forwarded
9999
-A FORWARD -p udp -m multiport --ports 137,138 -j {{ "DROP" if block_netbios else "ACCEPT" }}
100100
-A FORWARD -p tcp -m multiport --ports 137,139 -j {{ "DROP" if block_netbios else "ACCEPT" }}
101101

roles/strongswan/tasks/openssl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
when: item.split('@')[0] not in users
221221
with_items: "{{ valid_certs.stdout_lines }}"
222222

223-
- name: Genereate new CRL file
223+
- name: Generate new CRL file
224224
shell: >
225225
{{ openssl_bin }} ca -gencrl
226226
-config <(cat openssl.cnf <(printf "[basic_exts]\nsubjectAltName=DNS:{{ IP_subject_alt_name }}"))

roles/strongswan/templates/openssl.cnf.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ crl = $dir/crl.pem # The current CRL
2121
private_key = $dir/private/cakey.pem # The private key
2222
RANDFILE = $dir/private/.rand # private random number file
2323

24-
x509_extensions = basic_exts # The extentions to add to the cert
24+
x509_extensions = basic_exts # The extensions to add to the cert
2525

2626
# This allows a V2 CRL. Ancient browsers don't like it, but anything Easy-RSA
2727
# is designed for will. In return, we get the Issuer attached to CRLs.
@@ -56,7 +56,7 @@ default_bits = 2048
5656
default_keyfile = privkey.pem
5757
default_md = sha256
5858
distinguished_name = cn_only
59-
x509_extensions = easyrsa_ca # The extentions to add to the self signed cert
59+
x509_extensions = easyrsa_ca # The extensions to add to the self signed cert
6060

6161
# A placeholder to handle the $EXTRA_EXTS feature:
6262
#%EXTRA_EXTS% # Do NOT remove or change this line as $EXTRA_EXTS support requires it

0 commit comments

Comments
 (0)