Merge pull request #63 from tterranigma/no-tags

Removes tags
This commit is contained in:
Matt Willsher 2017-10-19 20:45:45 +01:00 committed by GitHub
commit 537b9b2bc2

View file

@ -7,22 +7,16 @@
- "{{ ansible_os_family }}_{{ ansible_distribution_major_version }}.yml"
- "{{ ansible_os_family }}.yml"
- default.yml
tags:
- sshd
- name: OS is supported
assert:
that: sshd_os_supported == True
tags:
- sshd
- name: Install ssh packages
package:
name: "{{ item }}"
state: present
with_items: "{{ sshd_packages }}"
tags:
- sshd
- name: Configuration
template:
@ -33,8 +27,6 @@
mode: "{{ sshd_config_mode }}"
validate: "{{ sshd_binary }} -t -f %s"
notify: reload_sshd
tags:
- sshd
- name: Service enabled and running
service:
@ -42,11 +34,7 @@
enabled: true
state: started
when: sshd_manage_service and ansible_virtualization_type != 'docker'
tags:
- sshd
- name: Register that this role has run
set_fact: sshd_has_run=true
when: sshd_has_run is not defined
tags:
- sshd