mirror of
https://github.com/geerlingguy/ansible-role-nfs
synced 2024-11-08 12:53:30 +01:00
Update molecule configuration to work with 3.0.
This commit is contained in:
parent
a182a316bd
commit
b2b7e4dd58
2 changed files with 19 additions and 0 deletions
6
.yamllint
Normal file
6
.yamllint
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
extends: default
|
||||||
|
rules:
|
||||||
|
line-length:
|
||||||
|
max: 120
|
||||||
|
level: warning
|
13
molecule/default/converge.yml
Normal file
13
molecule/default/converge.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
- name: Converge
|
||||||
|
hosts: all
|
||||||
|
become: true
|
||||||
|
|
||||||
|
pre_tasks:
|
||||||
|
- name: Update apt cache.
|
||||||
|
apt: update_cache=yes cache_valid_time=600
|
||||||
|
when: ansible_os_family == 'Debian'
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
roles:
|
||||||
|
- role: geerlingguy.nfs
|
Loading…
Reference in a new issue