Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- ---
-
- - 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')}}"
|