mirror of
https://github.com/roles-ansible/ansible_role_restic/
synced 2024-11-05 11:33:28 +01:00
installing bzip2 via pre_tasks in tests
This commit is contained in:
parent
703acb713b
commit
ea15fd7c15
2 changed files with 5 additions and 4 deletions
|
@ -15,10 +15,6 @@ env:
|
|||
install:
|
||||
- pip install molecule docker
|
||||
- git clone https://github.com/arillso/tests molecule/default/lint
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- bzip2
|
||||
|
||||
before_script:
|
||||
- cd ../
|
||||
|
|
|
@ -3,6 +3,11 @@
|
|||
hosts: all
|
||||
roles:
|
||||
- role: arillso.restic
|
||||
pre_tasks:
|
||||
- name: install bzip2
|
||||
package:
|
||||
name: bzip2
|
||||
state: present
|
||||
vars:
|
||||
restic_download_path: ~/restic
|
||||
restic_install_path: ~/restic
|
||||
|
|
Loading…
Reference in a new issue