forked from ISTI-ansible-roles/ansible-roles
library/roles/octave: Install some additional packages needed by octave to process the output formats.
This commit is contained in:
parent
ce6fcc45fe
commit
7452497843
|
@ -5,3 +5,6 @@ octave_pkg_state: latest
|
|||
octave_pkgs:
|
||||
- octave
|
||||
|
||||
octave_external_deps:
|
||||
- epstool
|
||||
- transfig
|
||||
|
|
|
@ -7,6 +7,10 @@
|
|||
apt: pkg={{ item }} state={{ octave_pkg_state }} update_cache=yes cache_valid_time=3600
|
||||
with_items: '{{ octave_pkgs }}'
|
||||
|
||||
- name: Install the octave external dependencies packages
|
||||
apt: pkg={{ item }} state={{ octave_pkg_state }} update_cache=yes cache_valid_time=3600
|
||||
with_items: '{{ octave_external_deps }}'
|
||||
|
||||
tags: octave
|
||||
when: octave_install
|
||||
|
||||
|
|
Loading…
Reference in New Issue