Added tautulli

Signed-off-by: TuDatTr <tuan-dat.tran@tudattr.dev>
This commit is contained in:
TuDatTr
2023-04-27 01:05:24 +02:00
parent 24c41f10ce
commit 25c2aff50c
14 changed files with 346 additions and 22 deletions

View File

@@ -1,5 +1,6 @@
---
- include_tasks: time.yml
- include_tasks: essential.yml
- include_tasks: sshd.yml
- include_tasks: aya01_fstab.yml
when: inventory_hostname == "aya01"

View File

@@ -0,0 +1,15 @@
---
- name: Copy sshd_config
template:
src: templates/common/ssh/sshd_config
dest: /etc/ssh/sshd_config
mode: 0644
become: yes
register: sshd
- name: Restart sshd
service:
name: "sshd"
state: "restarted"
become: yes
when: sshd.changed