1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-12 19:22:24 +00:00

Remote.It CLI can no longer coexist with remoteit Device Package

This commit is contained in:
A Holt 2023-07-26 04:28:14 -04:00 committed by GitHub
parent 64cdb3869c
commit 3934563ad6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -118,13 +118,18 @@
msg: "Could not find a remote.it CLI binary for CPU architecture \"{{ ansible_architecture }}\"" msg: "Could not find a remote.it CLI binary for CPU architecture \"{{ ansible_architecture }}\""
when: remoteit_arch == "unknown" when: remoteit_arch == "unknown"
- name: Download OPTIONAL {{ remoteit_cli_url }} (CLI) to /usr/bin/remoteit (755) # 2023-07-26: Remote.It CLI used to coexist fine with their "Device Package"
get_url: # e.g. it worked with remoteit apt package 4.17.12 in Q2 2023.
url: "{{ remoteit_cli_url }}" # But no longer--with remoteit apt package 4.18.4 (in Q3 2023) which fails to
dest: /usr/bin/remoteit # install with error: "Device Package cannot coexist with Remote.It CLI"
mode: 0755 #
force: yes # - name: Download OPTIONAL {{ remoteit_cli_url }} (CLI) to /usr/bin/remoteit (755)
timeout: "{{ download_timeout }}" # get_url:
# url: "{{ remoteit_cli_url }}" # e.g. https://downloads.remote.it/cli/latest/remoteit.{{ remoteit_arch }}-linux
# dest: /usr/bin/remoteit
# mode: 0755
# force: yes
# timeout: "{{ download_timeout }}"
# RECORD remote.it AS INSTALLED # RECORD remote.it AS INSTALLED