Fix Minor Spelling Mistakes

This commit is contained in:
Ben Hays 2024-02-04 01:32:36 +00:00 committed by GitHub
parent 382a40259d
commit 8782205d45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,13 +3,13 @@
This is a repo containing some of the PowerShell/Bash scripts and Ansible playbooks I've written and utilized within my personal network/homelab. Most of the scripts/playbooks should be self-explanatory by the name alone, but there's (hopefully) descriptions and comments in each file to explain the purpose and actions taken by each script.
## Using Ansible Playbooks
For any given Ansible playbook, say for example `openssl.yml`, the generic command-line options for running it would be:
For any given Ansible playbook, say for example `openssh.yml`, the generic command-line options for running it would be:
```bash
ansible-playbook -i inventory.ini openssh.yml --ask-become-pass
```
## Using Shell Scripts
Most/all of the shell scripts will display a usage list of arguments and options when called incorrectly or without arguments. As an example, see ssh-compliance.sh:
Most/all of the shell scripts will display a list of arguments and options when called incorrectly or without arguments. As an example, see ssh-compliance.sh:
```
Usage: ssh-compliance.sh (--install-deps) (--docker) <file-with-hosts>
```
```