mg
44022ed0a8
lock für script log vars doku changed never pool test bdfr log bdfr log reboot cifs mount vars aufräumen download script tasks playbook group vars doku eiegenes dataset archiv keepass bfdr invalid keepass: bfdr client id + client secret upvoted saved and liked Leerzeichen sources bug inventory vars vm test cv5pve typo Linux MInt fur Apt-Manage Sources bdfr share KeePassPW angepasst bdfr playbook bug cifs bdfr nutzer fileserver Keepass: user bdfr Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#115 Co-Authored-By: mg <mg@noreply.git.mgrote.net> Co-Committed-By: mg <mg@noreply.git.mgrote.net>
18 lines
559 B
YAML
18 lines
559 B
YAML
---
|
|
- name: include ubuntu tasks (determined by "ansible_distribution")
|
|
include_tasks: ubuntu.yml
|
|
when: ansible_distribution == 'Ubuntu'
|
|
|
|
- name: include Linux Mint tasks (determined by "ansible_distribution")
|
|
include_tasks: mint.yml
|
|
when: ansible_distribution == 'Linux Mint'
|
|
|
|
- name: include proxmox tasks (determined by group)
|
|
include_tasks: proxmox.yml
|
|
when: "'proxmox' in group_names"
|
|
|
|
- name: update package lists # noqa 503 503
|
|
become: yes
|
|
ansible.builtin.apt:
|
|
update_cache: yes
|
|
when: copy_src.changed
|