Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,12 @@ galaxy_info:
description: An ansible role for installing Archivematica from source.
company: Artefactual Systems
license: AGPLv3
min_ansible_version: 2.3
min_ansible_version: 2.7
platforms:
- name: EL
versions:
- 7
- name: Ubuntu
versions:
- trusty
- xenial

dependencies:
- role: geerlingguy.nodejs
version: 4.1.1
nodejs_version: 8.x
- bionic
2 changes: 1 addition & 1 deletion tasks/pipeline-instcode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
- name: "Install front-end dependencies"
become: "yes"
become_user: "archivematica"
command: npm install
command: "{{ npm_path }}/npm install"
args:
chdir: "{{ item }}"
with_items:
Expand Down
1 change: 1 addition & 0 deletions vars/Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ ansible_deps:
- "python-mysqldb" # Required for mysql_db module
- "sqlite3" # Required for am-configure and fixity
ca_custom_bundle: "/etc/ssl/certs/ca-certificates.crt"
npm_path: "/usr/bin/npm"
3 changes: 3 additions & 0 deletions vars/RedHat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ ansible_deps:
- "MySQL-python" # Required for mysql_db module
- "sqlite" # Required for am-configure and fixity
- "p7zip-plugins"
- "centos-release-scl-rh" # Required for rh-nodejs8
- "rh-nodejs8-npm"
ca_custom_bundle: "/etc/pki/tls/certs/ca-bundle.crt"
npm_path: "/opt/rh/rh-nodejs8/root/bin/"