25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - name: background packages
- apt:
- pkg: "{{ item }}"
- with_items:
- - 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
-
- - 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')}}"
|