mirror of
https://github.com/trailofbits/algo.git
synced 2025-06-07 15:43:54 +02:00
Fix typos discovered by codespell (#14325)
This commit is contained in:
parent
0ce7840847
commit
571daf4464
5 changed files with 6 additions and 6 deletions
|
@ -17,7 +17,7 @@
|
||||||
api_token: "{{ algo_hcloud_token }}"
|
api_token: "{{ algo_hcloud_token }}"
|
||||||
register: _hcloud_regions
|
register: _hcloud_regions
|
||||||
|
|
||||||
- name: Set facts about thre regions
|
- name: Set facts about the regions
|
||||||
set_fact:
|
set_fact:
|
||||||
hcloud_regions: "{{ hcloud_datacenter_facts | sort(attribute='location') }}"
|
hcloud_regions: "{{ hcloud_datacenter_facts | sort(attribute='location') }}"
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
become: false
|
become: false
|
||||||
when: algo_provider != "local"
|
when: algo_provider != "local"
|
||||||
|
|
||||||
- name: Include unatteded upgrades configuration
|
- name: Include unattended upgrades configuration
|
||||||
import_tasks: unattended-upgrades.yml
|
import_tasks: unattended-upgrades.yml
|
||||||
|
|
||||||
- name: Disable MOTD on login and SSHD
|
- name: Disable MOTD on login and SSHD
|
||||||
|
|
|
@ -95,7 +95,7 @@ COMMIT
|
||||||
-A FORWARD -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
|
-A FORWARD -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
|
||||||
# Drop SMB/CIFS traffic that requests to be forwarded
|
# Drop SMB/CIFS traffic that requests to be forwarded
|
||||||
-A FORWARD -p tcp --dport 445 -j {{ "DROP" if block_smb else "ACCEPT" }}
|
-A FORWARD -p tcp --dport 445 -j {{ "DROP" if block_smb else "ACCEPT" }}
|
||||||
# Drop NETBIOS trafic that requests to be forwarded
|
# Drop NETBIOS traffic that requests to be forwarded
|
||||||
-A FORWARD -p udp -m multiport --ports 137,138 -j {{ "DROP" if block_netbios else "ACCEPT" }}
|
-A FORWARD -p udp -m multiport --ports 137,138 -j {{ "DROP" if block_netbios else "ACCEPT" }}
|
||||||
-A FORWARD -p tcp -m multiport --ports 137,139 -j {{ "DROP" if block_netbios else "ACCEPT" }}
|
-A FORWARD -p tcp -m multiport --ports 137,139 -j {{ "DROP" if block_netbios else "ACCEPT" }}
|
||||||
|
|
||||||
|
|
|
@ -220,7 +220,7 @@
|
||||||
when: item.split('@')[0] not in users
|
when: item.split('@')[0] not in users
|
||||||
with_items: "{{ valid_certs.stdout_lines }}"
|
with_items: "{{ valid_certs.stdout_lines }}"
|
||||||
|
|
||||||
- name: Genereate new CRL file
|
- name: Generate new CRL file
|
||||||
shell: >
|
shell: >
|
||||||
{{ openssl_bin }} ca -gencrl
|
{{ openssl_bin }} ca -gencrl
|
||||||
-config <(cat openssl.cnf <(printf "[basic_exts]\nsubjectAltName=DNS:{{ IP_subject_alt_name }}"))
|
-config <(cat openssl.cnf <(printf "[basic_exts]\nsubjectAltName=DNS:{{ IP_subject_alt_name }}"))
|
||||||
|
|
|
@ -21,7 +21,7 @@ crl = $dir/crl.pem # The current CRL
|
||||||
private_key = $dir/private/cakey.pem # The private key
|
private_key = $dir/private/cakey.pem # The private key
|
||||||
RANDFILE = $dir/private/.rand # private random number file
|
RANDFILE = $dir/private/.rand # private random number file
|
||||||
|
|
||||||
x509_extensions = basic_exts # The extentions to add to the cert
|
x509_extensions = basic_exts # The extensions to add to the cert
|
||||||
|
|
||||||
# This allows a V2 CRL. Ancient browsers don't like it, but anything Easy-RSA
|
# This allows a V2 CRL. Ancient browsers don't like it, but anything Easy-RSA
|
||||||
# is designed for will. In return, we get the Issuer attached to CRLs.
|
# is designed for will. In return, we get the Issuer attached to CRLs.
|
||||||
|
@ -56,7 +56,7 @@ default_bits = 2048
|
||||||
default_keyfile = privkey.pem
|
default_keyfile = privkey.pem
|
||||||
default_md = sha256
|
default_md = sha256
|
||||||
distinguished_name = cn_only
|
distinguished_name = cn_only
|
||||||
x509_extensions = easyrsa_ca # The extentions to add to the self signed cert
|
x509_extensions = easyrsa_ca # The extensions to add to the self signed cert
|
||||||
|
|
||||||
# A placeholder to handle the $EXTRA_EXTS feature:
|
# A placeholder to handle the $EXTRA_EXTS feature:
|
||||||
#%EXTRA_EXTS% # Do NOT remove or change this line as $EXTRA_EXTS support requires it
|
#%EXTRA_EXTS% # Do NOT remove or change this line as $EXTRA_EXTS support requires it
|
||||||
|
|
Loading…
Add table
Reference in a new issue