Remove debugs

This commit is contained in:
Przemek Grondek 2023-04-24 13:14:42 +02:00
parent b90c6b3ab4
commit ed354d64b3
2 changed files with 0 additions and 14 deletions

View File

@ -4,10 +4,6 @@
ansible.builtin.package_facts:
manager: auto
- name: Print the package facts
ansible.builtin.debug:
var: ansible_facts.packages
- name: remove snap
community.general.snap:
name: firefox

View File

@ -11,11 +11,6 @@
body_format: json
register: git_info
- name: "Download URL"
debug:
msg: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*x64-GTK3.*AppImage'))[0] }}"
when: ansible_architecture == "x86_64"
- name: Install on amd64
become: yes
when: ansible_architecture == "x86_64"
@ -24,11 +19,6 @@
dest: /usr/local/bin/prusa-slicer.real
mode: 0755
- name: "Download URL"
debug:
msg: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*armv7l-GTK2.*AppImage'))[0] }}"
when: ansible_architecture == "arm64"
- name: Install on arm64
when: ansible_architecture == "arm64"
become: yes