ansible_init #3

Merged
sinibaldi merged 41 commits from ansible_init into main 2025-11-11 14:37:30 +01:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 0d3d6eb22e - Show all commits

View File

@ -4,7 +4,7 @@
include_vars: "{{ ansible_os_family }}.yml"
# Setup/install tasks.
- include: setup-Debian.yml
- include_tasks: setup-Debian.yml
when: ansible_os_family == 'Debian'
# Pure-FTPd setup
@ -18,11 +18,11 @@
file: dest={{ pure_ftpd_root }} mode=0755 state=directory owner={{ pure_ftpd_user }} group={{ pure_ftpd_group }}
# Create and/or install SSL certificate
- include: tls.yml
- include_tasks: tls.yml
when: pure_ftpd_tls
# Create the virtual FTP users and set their passwords
- include: virtual-user.yml
- include_tasks: virtual-user.yml
with_items: "{{ pure_ftpd_vusers }}"
- name: Link virtual FTP user database to the correct location