9 lines
303 B
YAML
9 lines
303 B
YAML
|
---
|
||
|
# Copy the toolbox.conf file to /etc/containers/
|
||
|
- name: Check containers directory exists
|
||
|
file:
|
||
|
path: /etc/containers
|
||
|
state: directory
|
||
|
- name: Copy toolbox.conf file to set default image
|
||
|
copy: src={{ role_path }}/files/toolbox.conf dest=/etc/containers/toolbox.conf force=yes mode=0644
|