1
0
Fork 0
mirror of https://gitlab.com/s3lph/ansible-collection-dirvish synced 2024-09-20 03:29:00 +02:00
ansible-collection-dirvish/roles/dirvish_server/tasks/dependencies.yml

19 lines
322 B
YAML
Raw Normal View History

2020-10-31 04:34:41 +01:00
---
- name: install dependencies
package:
name: "{{ item }}"
state: present
loop:
- dirvish
- rsync
- openssh-client
- name: install modified dirvish-expire
template:
src: dirvish-expire.j2
dest: /usr/local/bin/dirvish-expire-configfile
owner: root
group: root
mode: "0755"