mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-21 23:42:24 +02:00
17 lines
484 B
YAML
17 lines
484 B
YAML
- name: "pkgmgr install"
|
|
include_role:
|
|
name: pkgmgr-install
|
|
vars:
|
|
package_name: dockreap
|
|
when: run_once_cleanup_docker_anonymous_volumes is not defined
|
|
|
|
- name: run dockreap with --no-confirmation
|
|
command:
|
|
cmd: "dockreap --no-confirmation"
|
|
when: run_once_cleanup_docker_anonymous_volumes is not defined
|
|
|
|
- name: mark dockreap as run
|
|
set_fact:
|
|
run_once_cleanup_docker_anonymous_volumes: true
|
|
when: run_once_cleanup_docker_anonymous_volumes is not defined
|