ansible-sshd/tasks/main.yml

43 lines
941 B
YAML
Raw Normal View History

2014-12-18 23:12:51 +01:00
---
2015-01-13 14:26:52 +01:00
- name: Set OS dependent variables
2014-12-18 23:12:51 +01:00
include_vars: "{{ item }}"
with_first_found:
2015-01-04 16:49:35 +01:00
- "{{ ansible_distribution }}_{{ ansible_distribution_major_version }}.yml"
2014-12-22 21:18:35 +01:00
- "{{ ansible_distribution }}.yml"
2015-01-04 16:49:35 +01:00
- "{{ ansible_os_family }}_{{ ansible_distribution_major_version }}.yml"
2014-12-18 23:12:51 +01:00
- "{{ ansible_os_family }}.yml"
2014-12-25 21:02:44 +01:00
tags:
- sshd
2014-12-18 23:12:51 +01:00
2015-01-13 18:41:56 +01:00
- name: OS is supported
assert:
that: sshd_os_supported == True
- name: Installed
action: >
{{ ansible_pkg_mgr }}
name="{{ item }}"
state=installed
with_items: sshd_packages
2014-12-25 21:02:44 +01:00
tags:
- sshd
2015-01-13 14:26:52 +01:00
- name: Configuration
2014-12-18 23:12:51 +01:00
template:
src: sshd_config.j2
dest: "{{ sshd_config_file }}"
2014-12-22 10:25:31 +01:00
owner: "{{ sshd_config_owner }}"
group: "{{ sshd_config_group }}"
2014-12-22 11:05:09 +01:00
mode: "{{ sshd_config_mode }}"
2015-01-13 14:26:52 +01:00
notify: check_and_reload_sshd
2014-12-25 21:02:44 +01:00
tags:
- sshd
- name: Service enabled and running
service:
name: "{{ sshd_service }}"
enabled: true
state: running
2014-12-25 21:02:44 +01:00
tags:
- sshd