Estou portando minhas configurações de um script para ansible. No entanto, recebo o erro abaixo ao usar o módulo ansible dconf para definir gsettings. Eu tentei todos os formatos possíveis de chave / valor, incluindo um exemplo dos documentos ansible ( link ). Alguma ideia?
- name: Configure available keyboard layouts in Cinnamon
dconf:
key: "/org/gnome/libgnomekbd/keyboard/layouts"
value: "['us', 'se']"
state: present
fatal: [localhost]: FAILED! => {
"changed": false,
"invocation": {
"module_args": {
"key": "/org/gnome/libgnomekbd/keyboard/layouts",
"state": "present",
"value": "['us', 'se']"
}
},
"msg": "dconf failed while write the value with error: error: The connection is closed\n\nUsage:\n dconf write KEY VALUE \n\nWrite a new value to a key\n\nArguments:\n KEY A key path (starting, but not ending with '/')\n VALUE The value to write (in GVariant format)\n\n"
}