1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Merge pull request #3007 from jvonau/remoteit

use gitea as a template for remoteit
This commit is contained in:
A Holt 2021-10-28 08:45:05 -04:00 committed by GitHub
commit 8d99ce5c43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 8 deletions

View file

@ -7,5 +7,26 @@
# If nec, change them by editing /etc/iiab/local_vars.yml prior to installing!
# See https://docs.remote.it/cli/overview to refine either value below:
remoteit_cli_url: https://downloads.remote.it/cli/latest/remoteit_linux_armv7
remoteit_device_url: https://downloads.remote.it/remoteit/v4.13.5/remoteit-4.13.5.armhf.rpi.deb
remoteit_version: 4.13.5
iset_suffixes:
x86_64: amd64
aarch64: arm64
armv8: arm64.rpi
armv6: armhf.rpi
armv6l: armhf.rpi
armv7: armhf.rpi
armv7l: armhf.rpi
remoteit_iset_suffix: "{{ iset_suffixes[ansible_architecture] | default('unknown') }}"
remoteit_deb: remoteit-{{ remoteit_version }}.{{ remoteit_iset_suffix }}.deb
remoteit_device_url: https://downloads.remote.it/remoteit/v{{ remoteit_version }}/{{ remoteit_deb }}
iset_suffixes2:
x86_64: amd64
aarch64: arm64
armv6: armv6
armv6l: armv6
armv7: armv7
armv7l: armv7
armv8: arm64
remoteit_iset_suffix2: "{{ iset_suffixes[ansible_architecture] | default('unknown') }}"
remoteit_cli_url: https://downloads.remote.it/cli/latest/remoteit_linux_{{ remoteit_iset_suffix2 }}

View file

@ -1,22 +1,32 @@
- name: Fail if we detect unknown architecture
fail:
msg: "Could not find an apt package for the CPU architecture \"{{ ansible_architecture }}\""
when: remoteit_iset_suffix == "unknown"
- name: Fail if we detect unknown architecture
fail:
msg: "Could not find a binary for the CPU architecture \"{{ ansible_architecture }}\""
when: remoteit_iset_suffix2 == "unknown"
- name: Download the command line interface for this device to /usr/bin/{{ remoteit_cli_url }} (755)
get_url:
url: '{{ remoteit_cli_url }}'
dest: /usr/bin/
mode: 0755
- name: Download {{ remoteit_device_url }} device package to {{ downloads_dir }}
- name: Download {{ remoteit_device_url }} device package to {{ downloads_dir }}/
get_url:
url: '{{ remoteit_device_url }}'
dest: '{{ downloads_dir }}'
dest: '{{ downloads_dir }}/'
- name: Uninstall the device package {{ remoteit_device_url | basename }}
- name: Uninstall the device package {{ remoteit_deb }}
apt:
name: '{{ remoteit_device_url | basename }}'
name: '{{ remoteit_deb }}'
state: absent
- name: Install device package {{ downloads_dir }}/{{ remoteit_device_url | basename }}
- name: Install device package {{ downloads_dir }}/{{ remoteit_deb }}
apt:
deb: '{{ downloads_dir }}/{{ remoteit_device_url | basename }}'
deb: '{{ downloads_dir }}/{{ remoteit_deb }}'
state: present