diff --git a/roles/shell/tasks/apache2-mods.yml b/roles/shell/tasks/apache2-mods.yml new file mode 100644 index 0000000..d0a54db --- /dev/null +++ b/roles/shell/tasks/apache2-mods.yml @@ -0,0 +1,6 @@ +# Enable or disable apache2 mods +--- +- name: userdir + apache2_module: + name: userdir + state: present \ No newline at end of file diff --git a/roles/shell/tasks/main.yml b/roles/shell/tasks/main.yml index 79c0805..cfd300f 100644 --- a/roles/shell/tasks/main.yml +++ b/roles/shell/tasks/main.yml @@ -3,3 +3,4 @@ - include: packages.yml - include: users.yml +- include: apache2-mods.yml