diff --git a/playbooks/reconfigure_heimdall.yaml b/playbooks/reconfigure_heimdall.yaml index 2cf9f2a..350580d 100644 --- a/playbooks/reconfigure_heimdall.yaml +++ b/playbooks/reconfigure_heimdall.yaml @@ -1,7 +1,6 @@ - name: Getting entry ansible.builtin.shell: sqlite3 /share/docker_data/heimdall/config/www/app.sqlite "SELECT url FROM items WHERE title = '{{ item }}'" become: true - when: inventory_hostname in groups['raspberrypi5'] register: url - debug: @@ -9,4 +8,3 @@ - name: Changing entry ansible.builtin.shell: sqlite3 /share/docker_data/heimdall/config/www/app.sqlite "UPDATE items SET url = '{{ url.stdout |regex_replace('[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}','192.168.77.238') }}' WHERE title = '{{ item }}'" become: true - when: inventory_hostname in groups['raspberrypi5'] \ No newline at end of file