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

docs: Use FQCN for scenarios that use other linux system roles #122

Merged
merged 1 commit into from
Sep 15, 2023
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ This example also installs Cockpit with an IdM-issued web server certificate.

- name: Generate Cockpit web server certificate
include_role:
name: linux-system-roles.certificate
name: fedora.linux_system_roles.certificate
vars:
certificate_requests:
- name: /etc/cockpit/ws-certs.d/monger-cockpit
Expand Down Expand Up @@ -249,7 +249,7 @@ The most simple example.
- linux-system-roles.cockpit
```

Another example, including the role as a task to control when the action is performed. It is also recommended to configure the firewall using the linux-system-roles.firewall role to make the service accessible.
Another example, including the role as a task to control when the action is performed. It is also recommended to configure the firewall using the fedora.linux_system_roles.firewall role to make the service accessible.

```yaml
---
Expand All @@ -264,7 +264,7 @@ tasks:

- name: Configure Firewall for Web Console
include_role:
name: linux-system-roles.firewall
name: fedora.linux_system_roles.firewall
vars:
firewall:
service: cockpit
Expand Down