diff --git a/roles/remoteit/tasks/install.yml b/roles/remoteit/tasks/install.yml index bedef19b4..4c9531903 100644 --- a/roles/remoteit/tasks/install.yml +++ b/roles/remoteit/tasks/install.yml @@ -8,13 +8,13 @@ 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) +- name: Download {{ remoteit_cli_url }} for the {{ remoteit_iset_suffix2 }} arch of this device to /usr/bin/remoteit (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 }} for the {{ remoteit_iset_suffix }} arch of this device package to {{ downloads_dir }} get_url: url: '{{ remoteit_device_url }}' dest: '{{ downloads_dir }}/' @@ -32,7 +32,7 @@ # RECORD remoteit AS INSTALLED -- name: "Set 'openvpn_installed: True'" +- name: "Set 'remoteit_installed: True'" set_fact: remoteit_installed: True