forked from evolix/ansible-roles
evomaintenance: install dependencies when installing vendored version
This commit is contained in:
parent
88b66dca24
commit
20e8d9f432
2 changed files with 9 additions and 0 deletions
|
@ -11,6 +11,7 @@ The **patch** part changes incrementally at each release.
|
|||
## [Unreleased]
|
||||
|
||||
### Added
|
||||
* evomaintenance: install dependencies when installing vendored version
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
---
|
||||
|
||||
- name: dependencies are installed
|
||||
apt:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
with_items:
|
||||
- postgresql-client
|
||||
- sudo
|
||||
|
||||
- include_role:
|
||||
name: remount-usr
|
||||
tags:
|
||||
|
|
Loading…
Add table
Reference in a new issue