From 025065472119e09c059906d303acb2dde67a6aff Mon Sep 17 00:00:00 2001 From: Rene Mewissen Date: Thu, 23 Jun 2022 23:25:21 +0200 Subject: [PATCH] add package list for ubuntu --- roles/webserver/tasks/install_apache.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/roles/webserver/tasks/install_apache.yml b/roles/webserver/tasks/install_apache.yml index e69de29..94e97a9 100644 --- a/roles/webserver/tasks/install_apache.yml +++ b/roles/webserver/tasks/install_apache.yml @@ -0,0 +1,18 @@ +- name: webserver | apache | installing apache + package: + name: "{{ apache_package }}" + state: latest + +# - name: webserver | apache | setup localhost for statistics +# copy: +# src: "apache_localhost" +# dest: "/etc/apache/sites-available/localhost" + +# - name: webserver | apache | link sites-available to sites-enabled for localhost +# file: +# path: "/etc/apache/sites-enabled/localhost" +# state: link +# src: "/etc/apache/sites-available/localhost" +# notify: restart_apache + +# - include_tasks: configure_apache_snmpd.yml \ No newline at end of file