forked from ISTI-ansible-roles/ansible-roles
9 lines
245 B
YAML
9 lines
245 B
YAML
|
---
|
||
|
- name: Install the packages needed to run the redmine infrastructure. install the ruby packages needed to run redmine. Use ruby 2.0
|
||
|
apt: pkg={{ item }} state=installed
|
||
|
with_items: redmine_base_packages
|
||
|
tags:
|
||
|
- ruby
|
||
|
- redmine
|
||
|
|