14 lines
401 B
YAML
14 lines
401 B
YAML
|
- hosts: '{{ variable_host | default("lab15_standard") }}'
|
||
|
gather_facts: no
|
||
|
ignore_unreachable: yes
|
||
|
become: true
|
||
|
tasks:
|
||
|
- name: Send file to
|
||
|
get_url:
|
||
|
url: https://denali.kcir.pwr.edu.pl/~jdelicat/gnome-shell-theme.gresource
|
||
|
dest: /usr/share/gnome-shell/theme/Yaru/gnome-shell-theme.gresource
|
||
|
|
||
|
- name : restart gdm
|
||
|
service:
|
||
|
name: gdm
|
||
|
state: restarted
|