Remove debugs
This commit is contained in:
parent
b90c6b3ab4
commit
ed354d64b3
2 changed files with 0 additions and 14 deletions
|
@ -4,10 +4,6 @@
|
||||||
ansible.builtin.package_facts:
|
ansible.builtin.package_facts:
|
||||||
manager: auto
|
manager: auto
|
||||||
|
|
||||||
- name: Print the package facts
|
|
||||||
ansible.builtin.debug:
|
|
||||||
var: ansible_facts.packages
|
|
||||||
|
|
||||||
- name: remove snap
|
- name: remove snap
|
||||||
community.general.snap:
|
community.general.snap:
|
||||||
name: firefox
|
name: firefox
|
||||||
|
|
|
@ -11,11 +11,6 @@
|
||||||
body_format: json
|
body_format: json
|
||||||
register: git_info
|
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
|
- name: Install on amd64
|
||||||
become: yes
|
become: yes
|
||||||
when: ansible_architecture == "x86_64"
|
when: ansible_architecture == "x86_64"
|
||||||
|
@ -24,11 +19,6 @@
|
||||||
dest: /usr/local/bin/prusa-slicer.real
|
dest: /usr/local/bin/prusa-slicer.real
|
||||||
mode: 0755
|
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
|
- name: Install on arm64
|
||||||
when: ansible_architecture == "arm64"
|
when: ansible_architecture == "arm64"
|
||||||
become: yes
|
become: yes
|
||||||
|
|
Loading…
Reference in a new issue