Skip to content

Commit

Permalink
Use right ansible module
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkadel committed Oct 23, 2024
1 parent e9c353b commit db7cb22
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions roles/video_reserves/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
notify: restart apache2
loop:
- libapache2-mod-php{{ php_version }}

- name: install apache modules
community.general.apache2_module:
name: "{{ item }}"
identifier: "{{ item }}"
state: present
notify: restart apache
with_items:
- php{{ php_version }}

- name: video_reserves | create directories for shared files
Expand Down

0 comments on commit db7cb22

Please sign in to comment.