mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
remoteit/tasks/main.yml: Use skip_role_on_error
This commit is contained in:
parent
84397e67b2
commit
865d2434eb
1 changed files with 32 additions and 24 deletions
|
@ -11,31 +11,39 @@
|
||||||
quiet: yes
|
quiet: yes
|
||||||
|
|
||||||
|
|
||||||
- name: Install remoteit if 'remoteit_installed' not defined, e.g. in {{ iiab_state_file }} # /etc/iiab/iiab_state.yml
|
- block:
|
||||||
include_tasks: install.yml
|
|
||||||
when: remoteit_installed is undefined
|
|
||||||
|
|
||||||
|
- name: Install remoteit if 'remoteit_installed' not defined, e.g. in {{ iiab_state_file }} # /etc/iiab/iiab_state.yml
|
||||||
|
include_tasks: install.yml
|
||||||
|
when: remoteit_installed is undefined
|
||||||
|
|
||||||
- include_tasks: enable-or-disable.yml
|
- include_tasks: enable-or-disable.yml
|
||||||
|
|
||||||
# - name: Extract claim code from /etc/remoteit/config.json if it exists
|
# - name: Extract claim code from /etc/remoteit/config.json if it exists
|
||||||
# shell: grep claim /etc/remoteit/config.json | rev | cut -d\" -f2 | rev
|
# shell: grep claim /etc/remoteit/config.json | rev | cut -d\" -f2 | rev
|
||||||
# register: remoteit_claim_code
|
# register: remoteit_claim_code
|
||||||
|
|
||||||
- name: Add 'remoteit' variable values to {{ iiab_ini_file }}
|
- name: Add 'remoteit' variable values to {{ iiab_ini_file }}
|
||||||
ini_file:
|
ini_file:
|
||||||
path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
|
path: "{{ iiab_ini_file }}" # /etc/iiab/iiab.ini
|
||||||
section: remoteit
|
section: remoteit
|
||||||
option: "{{ item.option }}"
|
option: "{{ item.option }}"
|
||||||
value: "{{ item.value | string }}"
|
value: "{{ item.value | string }}"
|
||||||
with_items:
|
with_items:
|
||||||
- option: name
|
- option: name
|
||||||
value: remote.it
|
value: remote.it
|
||||||
- option: description
|
- option: description
|
||||||
value: '"https://remote.it can help you remotely maintain an IIAB. Some benefits include: crossing multiple NATs/firewalls using a single TCP port, without requiring router port forwarding, and reducing your network''s vulnerability."'
|
value: '"https://remote.it can help you remotely maintain an IIAB. Some benefits include: crossing multiple NATs/firewalls using a single TCP port, without requiring router port forwarding, and reducing your network''s vulnerability."'
|
||||||
- option: remoteit_install
|
- option: remoteit_install
|
||||||
value: "{{ remoteit_install }}"
|
value: "{{ remoteit_install }}"
|
||||||
- option: remoteit_enabled
|
- option: remoteit_enabled
|
||||||
value: "{{ remoteit_enabled }}"
|
value: "{{ remoteit_enabled }}"
|
||||||
# - option: remoteit_claim_code
|
# - option: remoteit_claim_code
|
||||||
# value: "{{ remoteit_claim_code.stdout }}"
|
# value: "{{ remoteit_claim_code.stdout }}"
|
||||||
|
|
||||||
|
rescue:
|
||||||
|
|
||||||
|
- name: 'SEE ERROR ABOVE (skip_role_on_error: {{ skip_role_on_error }})'
|
||||||
|
fail:
|
||||||
|
msg: ""
|
||||||
|
when: not skip_role_on_error
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue