d4science-ghn-cluster: Install a newer version of pandoc on all the dataminer servers.
This commit is contained in:
parent
4c6df5199e
commit
57da7a671e
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
pandoc_install: False
|
||||
|
||||
pandoc_pkg_version: 1.17.1
|
||||
pandoc_pkg_file: 'pandoc-{{ pandoc_pkg_version }}-2-amd64.deb'
|
||||
pandoc_pkg_url: 'https://github.com/jgm/pandoc/releases/download/{{ pandoc_pkg_version }}/{{ pandoc_pkg_file }}'
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
- name: Get the pandoc deb package
|
||||
get_url: url={{pandoc_pkg_url}} dest=/srv/{{ pandoc_pkg_file }}
|
||||
tags: pandoc
|
||||
|
||||
- name: Install the pandoc deb package
|
||||
apt: deb=/srv/{{ pandoc_pkg_file }}
|
||||
tags: pandoc
|
Loading…
Reference in New Issue