Skip to content

Commit

Permalink
Fixup the role installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Jan 25, 2024
1 parent 32d99d1 commit d198e28
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 26 deletions.
14 changes: 13 additions & 1 deletion molecule/default/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,19 @@
become: true

pre_tasks:
- import_tasks: setup.yml
- name: Update apt cache.
apt:
update_cache: true
cache_valid_time: 600
when: ansible_os_family == 'Debian'

- name: Ensure build dependencies are installed.
yum:
name:
- logrotate
- systemd-sysv
state: present
when: ansible_os_family == 'RedHat'

roles:
- role: geerlingguy.varnish
Expand Down
25 changes: 0 additions & 25 deletions molecule/default/setup.yml

This file was deleted.

0 comments on commit d198e28

Please sign in to comment.