Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- ---
-
- - name: background packages
- apt:
- pkg:
- - mate-backgrounds
- - gnome-backgrounds
-
- - name: directory for backgrounds
- file:
- path: /opt/backgrounds
- state: directory
-
- - name: copy kita-pro backgrounds
- synchronize:
- src: background/
- dest: /opt/backgrounds
- perms: false
- owner: false
- group: false
-
- - name: find all other backgrounds
- find:
- paths:
- - /usr/share/backgrounds/gnome
- - /usr/share/backgrounds/mate/nature
- - /usr/share/backgrounds/mate/abstract
- recurse: yes
- excludes: "{{_excluded_backgrounds}}"
- register: _find_backgrounds
-
- - name: link background files
- file:
- src: "{{item}}"
- dest: "/opt/backgrounds/{{item|basename}}"
- state: link
- with_items: "{{_find_backgrounds|json_query('files[].path')}}"
|