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ů.
Tento repozitář je archivovaný. Můžete prohlížet soubory, klonovat, ale nemůžete nahrávat a vytvářet nové úkoly a požadavky na natažení.
|
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
|