Skip to content
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

remove FQCN from roles in examples #420

Merged
merged 1 commit into from
Mar 16, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion roles/mysql_hardening/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ It configures:
collections:
- devsec.hardening
roles:
- devsec.hardening.mysql_hardening
- mysql_hardening
```

This role expects an existing installation of MySQL or MariaDB. Please ensure that the following variables are set accordingly:
Expand Down
2 changes: 1 addition & 1 deletion roles/nginx_hardening/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ It works with the following nginx-roles, including, but not limited to:
collections:
- devsec.hardening
roles:
- devsec.hardening.nginx_hardening
- nginx_hardening
```

[nginx_client_body_buffer_size]: http://nginx.org/en/docs/http/ngx_http_core_module.html#client_body_buffer_size
Expand Down
4 changes: 2 additions & 2 deletions roles/os_hardening/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ To prevent some of the filesystems from being disabled, add them to the `os_file
collections:
- devsec.hardening
roles:
- devsec.hardening.os_hardening
- os_hardening
```

## Changing sysctl variables
Expand All @@ -232,7 +232,7 @@ So for example if you want to change the IPv4 traffic forwarding variable to `1`
collections:
- devsec.hardening
roles:
- devsec.hardening.os_hardening
- os_hardening
vars:
sysctl_overwrite:
# Enable IPv4 traffic forwarding.
Expand Down
4 changes: 2 additions & 2 deletions roles/ssh_hardening/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ Warning: This role disables root-login on the target server! Please make sure yo
collections:
- devsec.hardening
roles:
- devsec.hardening.ssh_hardening
- ssh_hardening
```

## Configuring settings not listed in role-variables
Expand All @@ -258,7 +258,7 @@ Example playbook:
collections:
- devsec.hardening
roles:
- devsec.hardening.ssh_hardening
- ssh_hardening
vars:
ssh_custom_options:
- "Include /etc/ssh/ssh_config.d/*"
Expand Down