ansible/plays/vsftpd.yml

11 lines
272 B
YAML
Executable File

#!/usr/bin/env ansible-playbook
---
# Deploy vsftpd server
- hosts: vsftpd
vars:
certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}'
vsftpd: '{{ glob_vsftpd | default({}) | combine(loc_vsftpd | default({})) }}'
roles:
- certbot
- vsftpd