[ansible-project] jinja2_native behavior

2024-03-04 Thread 'Rowe, Walter P. (Fed)' via Ansible Project
Is this expected behavior? % ANSIBLE_JINJA2_NATIVE=true ansible -i localhost, localhost -m debug -a var=this -e "this='None'" localhost | SUCCESS => { "this": null } % ANSIBLE_JINJA2_NATIVE=false ansible -i localhost, localhost -m debug -a var=this -e "this='None'" localhost | SUCCESS

Re: [ansible-project] ansible question

2024-03-04 Thread Prady A
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: "

[ansible-project] ansible question

2024-03-04 Thread Christoph Christ
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. --- - name: Ensure GDM disable-user-list option is enabled