You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
541 B
23 lines
541 B
- 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' |
|
notify: Restart services |
|
tags: |
|
- darkhttpd |
|
- systemd
|
|
|