diff --git a/tasks/setup-Debian.yml b/tasks/setup-Debian.yml index e6ee8ba..0d9de95 100644 --- a/tasks/setup-Debian.yml +++ b/tasks/setup-Debian.yml @@ -2,6 +2,6 @@ - name: Update apt cache. apt: update_cache=yes cache_valid_time=86400 -- name: Ensure Apache is installed. +- name: Ensure Apache is installed on Debian. apt: "name={{ item }} state=installed" with_items: apache_packages diff --git a/tasks/setup-RedHat.yml b/tasks/setup-RedHat.yml index e523b2b..09f62bd 100644 --- a/tasks/setup-RedHat.yml +++ b/tasks/setup-RedHat.yml @@ -1,5 +1,5 @@ --- -- name: Ensure Apache is installed. +- name: Ensure Apache is installed on RHEL. yum: name: "{{ item }}" state: installed diff --git a/tasks/setup-Solaris.yml b/tasks/setup-Solaris.yml index 185470a..5c322b1 100644 --- a/tasks/setup-Solaris.yml +++ b/tasks/setup-Solaris.yml @@ -1,5 +1,5 @@ --- -- name: Ensure Apache is installed. +- name: Ensure Apache is installed on Solaris. pkg5: name: "{{ item }}" state: installed diff --git a/tasks/setup-Suse.yml b/tasks/setup-Suse.yml index 21e4967..8ea7339 100644 --- a/tasks/setup-Suse.yml +++ b/tasks/setup-Suse.yml @@ -1,5 +1,5 @@ --- -- name: Ensure Apache is installed. +- name: Ensure Apache is installed on Suse. zypper: name: "{{ item }}" state: installed