mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-29 18:48:39 +02:00
16 lines
477 B
YAML
16 lines
477 B
YAML
- name: optimize storage performance
|
|
include_role:
|
|
name: system-storage-optimizer
|
|
when: "(path_mass_storage is defined or path_rapid_storage is defined) and enable_system_storage_optimizer | bool and (docker_enabled is defined and docker_enabled | bool) "
|
|
|
|
- name: Cleanup Docker Anonymous Volumes
|
|
import_role:
|
|
name: cleanup-docker-anonymous-volumes
|
|
when: mode_cleanup | bool
|
|
|
|
- name: Show all facts
|
|
debug:
|
|
var: ansible_facts
|
|
when: enable_debug | bool
|
|
|