Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Este repositório está arquivado. Você pode visualizar os arquivos e realizar clone, mas não poderá realizar push nem abrir issues e pull requests.
|
12345678910111213141516171819 |
- ---
-
- - name: backgrounds directory
- file:
- path: ~/.backgrounds
- state: directory
- when: background_image is defined
-
- - name: background image
- copy:
- src: "{{background_image}}"
- dest: "{{background_image_path}}"
- when: background_image is defined
-
- - name: copy all background images
- synchronize:
- src: ~/.backgrounds/
- dest: ~/.backgrounds/
- when: home_copy_all_background_images
|