Hi all,
i have to implement an ansible task. where the action is, to reload the dconf for Gnome.
It is telling me: the requested handler “reload dconf” was not found in either the main handlers list nor in the listening handlers list.
Hi all,
i have to implement an ansible task. where the action is, to reload the dconf for Gnome.
It is telling me: the requested handler “reload dconf” was not found in either the main handlers list nor in the listening handlers list.
Hi
Welcome…
There should be a handler to listen this notification…
The handler should have the same keyword.
Ex:
— # webserver.yml - name: “Install and configure web server” hosts: “all” handlers: - name: “Start and enable httpd Service” ansible.builtin.service: name: “httpd.service” state: “started” enabled: true become: true tasks: - name: “Install httpd Packages” ansible.builtin.package: name: “httpd” state: “present” become: true notify: - “Start and enable httpd Service”
Hope it helps…