skip to Main Content

ansible – cant set wallpaper in xfce4 with xfconf "failed to init libxfconf " – Debian

I try to set a wallpaper on Debian Systems with ansible on xfce4 desktops. For this I looked up the official documentation: https://docs.ansible.com/ansible/latest/collections/community/general/xfconf_module.html My Task: - name: set wallpaper become_user: odin xfconf: channel: "xfce4-desktop" property: "/backdrop/screen0/{{item}}/image-path" value_type: "string" value: ['/usr/share/backgrounds/xfce/802192.jpg']…

VIEW QUESTION

Combining values in Ansible – Nginx

I need to create a cronjob for renewal lets encrypt certificates. The final command should looks like this: certbot certonly --no-eff-email -m [email protected] --redirect --agree-tos --non-interactive --standalone -d mydomain.com -d www.mydomain.com -d domain1.mydomain.com -d domain1a.mydomain.com -d domain2.mydomain.com -d domain2a.mydomain.com I…

VIEW QUESTION

python module firewall not found – Debian

computer run ansible-playbook: MacBook, with python 3.9 target machine: Debian 10 with python2.7.16 and python3.7.3 When I tried to open port in firewall: - name: Open port 80 for http access firewalld: service: http permanent: true state: enabled I got…

VIEW QUESTION
Back To Top
Search