Changeset - 0b7b153fc6a9
[Not reviewed]
0 2 0
Branko Majic (branko) - 3 years ago 2021-01-07 06:07:26
branko@majic.rs
MAR-160: Move the helper set-up tasks into prepare playbook.
2 files changed with 9 insertions and 9 deletions:
0 comments (0 inline, 0 general)
roles/common/molecule/default/playbook.yml
Show inline comments
 
---
 

	
 
- hosts: helper
 
  become: true
 
  tasks:
 

	
 
    - name: Install apt-cacher-ng
 
      apt:
 
        name: apt-cacher-ng
 
        state: present
 

	
 
- hosts: parameters-mandatory,parameters-optional
 
  become: true
 
  roles:
roles/common/molecule/default/prepare.yml
Show inline comments
 
@@ -42,6 +42,15 @@
 
        name: net-tools
 
        state: present
 

	
 
- hosts: helper
 
  become: true
 
  tasks:
 

	
 
    - name: Install apt-cacher-ng
 
      apt:
 
        name: apt-cacher-ng
 
        state: present
 

	
 
- hosts: parameters-mandatory,parameters-optional
 
  become: true
 
  tasks:
0 comments (0 inline, 0 general)