You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
386 B
YAML
11 lines
386 B
YAML
2 years ago
|
- name: Install Bakaláři
|
||
|
hosts: ucitelske
|
||
|
user: administrator
|
||
|
become: true
|
||
|
tasks:
|
||
|
- name: Create desktop shortcut for Bakaláři
|
||
|
copy: src={{ item.src }} dest={{ item.desc }}
|
||
|
with_items:
|
||
|
- { src: 'files/bakalari.desktop', dest: '/usr/share/applications/bakalari.desktop' }
|
||
|
- { src: 'files/bakalari.png', dest: '/usr/share/icons/bakalari.png' }
|