12345678910111213141516171819202122232425262728293031323334353637383940 |
- ---
- - name: Pre-flight checks only.
- hosts: workstation.lab.example.com
- gather_subset: min
- become: no
- collections:
- - p0f.operators
- tasks:
- - include_role:
- name: check-env
- apply:
- tags: check
- tags: check
- - include_role:
- name: fix-operators
- apply:
- tags: fix
- tags: fix
- - include_role:
- name: remove-operators
- apply:
- tags: remove
- loop: "{{ removed_operators }}"
- loop_control:
- loop_var: role
- tags: remove
- - include_role:
- name: deploy-operators
- apply:
- tags: deploy
- loop: "{{ added_operators }}"
- loop_control:
- loop_var: role
- tags: deploy
- # TODO: deploy vscode / codium ?
- ...
|