1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00
iiab/roles/remoteit/defaults/main.yml

37 lines
1.3 KiB
YAML
Raw Normal View History

# https://remote.it can help you remotely maintain an IIAB.
# remoteit_install: True
# remoteit_enabled: False
# All above are set in: github.com/iiab/iiab/blob/master/vars/default_vars.yml
# If nec, change them by editing /etc/iiab/local_vars.yml prior to installing!
2021-10-28 09:23:28 +00:00
remoteit_version: 4.13.5
2021-10-29 04:11:56 +00:00
# See https://docs.remote.it/device-package/installation to refine URL below:
device_suffixes:
2021-10-28 07:09:24 +00:00
armv6: armhf.rpi
armv6l: armhf.rpi
armv7: armhf.rpi
armv7l: armhf.rpi
2021-10-29 04:11:56 +00:00
armv8: arm64.rpi
aarch64: arm64
x86_64: amd64
remoteit_device_suffix: "{{ device_suffixes[ansible_architecture] | default('unknown') }}"
remoteit_deb: remoteit-{{ remoteit_version }}.{{ remoteit_device_suffix }}.deb
2021-10-28 09:23:28 +00:00
remoteit_device_url: https://downloads.remote.it/remoteit/v{{ remoteit_version }}/{{ remoteit_deb }}
2021-10-29 04:11:56 +00:00
# Example... https://downloads.remote.it/remoteit/v4.13.5/remoteit-4.13.5.armhf.rpi.deb
2021-10-28 07:09:24 +00:00
2021-10-29 04:11:56 +00:00
# See https://docs.remote.it/cli/overview to refine URL below:
cli_suffixes:
2021-10-28 07:09:24 +00:00
armv6: armv6
armv6l: armv6
armv7: armv7
armv7l: armv7
armv8: arm64
2021-10-29 04:11:56 +00:00
aarch64: arm64
x86_64: amd64
remoteit_cli_suffix: "{{ cli_suffixes[ansible_architecture] | default('unknown') }}"
remoteit_cli_url: https://downloads.remote.it/cli/latest/remoteit_linux_{{ remoteit_cli_suffix }}
# Example... https://downloads.remote.it/cli/latest/remoteit_linux_armv7