This commit is contained in:
Tristan PILAT 2018-06-28 14:18:31 +02:00
parent 4eea7362e3
commit db84e63940
3 changed files with 47 additions and 0 deletions

3
uvrrpd/README.md Normal file
View file

@ -0,0 +1,3 @@
# uvrrpd
Install Evolix's uvrrpd from sources.

12
uvrrpd/meta/main.yml Normal file
View file

@ -0,0 +1,12 @@
galaxy_info:
author: Evolix
description: Install uvrrpd from sources.
issue_tracker_url: https://forge.evolix.org/projects/uvrrpd/issues
min_ansible_version: 2.2
platforms:
- name: Debian
versions:
- stretch

32
uvrrpd/tasks/main.yml Normal file
View file

@ -0,0 +1,32 @@
---
- include_role:
name: remount-usr
tags:
- uvrrpd
- name: Get uvrrpd sources
unarchive:
src: 'https://github.com/Evolix/uvrrpd/archive/master.zip'
dest: /root/
remote_src: True
mode: "0755"
tags:
- uvrrpd
- name: Pre-build configure
shell: 'cd /root/uvrrpd-master/;autoreconf -i;./configure'
tags:
- uvrrpd
- name: Make
make:
chdir: /root/uvrrpd-master/
tags:
- uvrrpd
- name: Make install
make:
chdir: /root/uvrrpd-master/
target: install
tags:
- uvrrpd