mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-10 05:33:29 +01:00
Removes tags
This commit is contained in:
parent
1bbdd2fc6b
commit
8142c8b768
1 changed files with 0 additions and 12 deletions
|
@ -7,14 +7,10 @@
|
|||
- "{{ 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: Installed
|
||||
action: >
|
||||
|
@ -23,8 +19,6 @@
|
|||
state=installed
|
||||
with_items: "{{ sshd_packages }}"
|
||||
when: ansible_pkg_mgr != 'unknown'
|
||||
tags:
|
||||
- sshd
|
||||
|
||||
- name: Configuration
|
||||
template:
|
||||
|
@ -35,8 +29,6 @@
|
|||
mode: "{{ sshd_config_mode }}"
|
||||
validate: "{{ sshd_binary }} -t -f %s"
|
||||
notify: reload_sshd
|
||||
tags:
|
||||
- sshd
|
||||
|
||||
- name: Service enabled and running
|
||||
service:
|
||||
|
@ -44,11 +36,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
|
||||
|
|
Loading…
Reference in a new issue