10 lines
261 B
YAML
10 lines
261 B
YAML
---
|
|
# Sistemiamo GVFS
|
|
|
|
- name: Aggiustiamo gvfs
|
|
ansible.builtin.lineinfile:
|
|
path: /usr/lib/systemd/user/gvfs-daemon.service
|
|
line: 'Environment="KRB5CCNAME=FILE:/tmp/.krb5cc_%U"'
|
|
insertafter: "^[Service]"
|
|
state: present
|
|
notify: Daemon reload
|