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

21 lines
734 B
YAML
Raw Normal View History

2016-11-27 10:06:35 +01:00
---
2016-12-13 17:22:52 +01:00
- name: Download Warehost-ftp
get_url: url=https://warehost.sum7.eu/downloads/current/warehost-ftp dest=/usr/local/bin/warehost-ftp owner=root group=root mode=0755
2016-12-20 12:14:13 +01:00
notify: restart warehost-ftp
2016-11-27 10:06:35 +01:00
- name: Create data folder
2016-12-20 12:14:13 +01:00
file: path={{warehost_ftp_own_path}} state=directory owner=warehost group={{http_grp}} mode=0770
2016-11-27 10:06:35 +01:00
- 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