From 0944104492c20fb459ed82369063e72b9f9ed39e Mon Sep 17 00:00:00 2001 From: Jerry Vonau Date: Thu, 28 Oct 2021 18:00:00 -0500 Subject: [PATCH] fix and improve feedback wording --- roles/remoteit/tasks/install.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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