This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-role-warehost/warehost-ftp/tasks/main.yml

20 lines
678 B
YAML

---
- name: Download Warehost-ftp (TODO current copy)
copy: src=warehost-ftp dest=/usr/local/bin/warehost-ftp owner=root group=root mode=0755
- name: Create data folder
file: path={{warehost_ftp_data_path}} state=directory owner=warehost group={{http_grp}} mode=0770
- name: Configurate warehost
template: src=config.yml dest=/etc/warehost/ftp.conf owner=warehost mode=0600
notify: restart warehost-ftp
- name: Install service
template: src=warehost-ftp.unit dest=/lib/systemd/system/warehost-ftp.service owner=root mode=644
notify:
- reload daemon-reload
- restart warehost-ftp
- name: Enable warehost
service: name=warehost-ftp state=started enabled=yes