This repository has been archived on 2020-06-05. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-darkhttpd/tasks/main.yml

24 lines
541 B
YAML
Raw Permalink Normal View History

2020-05-18 17:19:59 +00:00
- name: Clone darkhttpd
git:
dest: '{{ darkhttpd.path }}'
repo: 'https://git.redxen.eu/RepoMirrors/darkhttpd'
tags:
- darkhttpd
- packages
- name: Build darkhttpd
make:
chdir: '{{ darkhttpd.path }}'
target: all
tags:
- darkhttpd
- packages
- name: Copy systemd service file
template:
follow: yes
src: 'darkhttpd.service.j2'
dest: '/etc/systemd/system/darkhttpd.service'
2020-06-05 13:43:57 +00:00
notify: Restart services
2020-05-18 17:19:59 +00:00
tags:
- darkhttpd
- systemd