Skip to content

Commit

Permalink
Also replace short module names for FQCNs in blocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdebock committed Feb 22, 2021
1 parent d448bff commit ed5a641
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ roles:
- name: robertdebock.openssl
- name: robertdebock.python_pip
- name: robertdebock.selinux
collections:
- name: ansible.posix
- name: community.general
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
- name: configure selinux
block:
- name: modify selinux settings
seboolean:
ansible.posix.seboolean:
name: "{{ item }}"
state: yes
persistent: yes
Expand All @@ -24,7 +24,7 @@
loop: "{{ httpd_sebooleans }}"

- name: allow connections to custom port
seport:
community.general.seport:
ports: "{{ item }}"
proto: tcp
setype: http_port_t
Expand Down

0 comments on commit ed5a641

Please sign in to comment.