1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 03:32:12 +00:00

Merge pull request #3201 from holta/remoteit-mint

Workaround to induce remote.it install on Linux Mint
This commit is contained in:
A Holt 2022-04-29 15:40:43 -04:00 committed by GitHub
commit a463632492
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,6 +61,14 @@
# apt:
# deb: "{{ remoteit_device_url }}"
# 2022-04-29: https://downloads.remote.it/remoteit/install_agent.sh refuses to
# install on Mint as "ID_LIKE=ubuntu" in /etc/os-release is lowercase. So we
# add a tag with the word 'Ubuntu' containing an uppercase 'U' as a workaround.
# (This hack can later be removed, if remote.it adjusts install_agent.sh above)
- name: If Linux Mint, add "IIAB_LIKE=Ubuntu" to /etc/os-release to force install of remote.it
shell: echo "IIAB_LIKE=Ubuntu" >> /etc/os-release
when: is_linuxmint
# - name: Install remote.it Device Package for your CPU/OS, using https://downloads.remote.it/remoteit/install_agent.sh -- this puts a claim code in /etc/remoteit/config.json which is valid for 24h
- name: Install remote.it Device Package for your CPU/OS, using https://downloads.remote.it/remoteit/install_agent.sh
shell: curl -L https://downloads.remote.it/remoteit/install_agent.sh | sh