mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
16 lines
316 B
YAML
16 lines
316 B
YAML
|
|
- name: Enable & (Re)Start connectd daemon which calls home
|
|
systemd:
|
|
name: connectd
|
|
daemon_reload: yes
|
|
enabled: yes
|
|
state: restarted
|
|
when: remoteit_enabled
|
|
|
|
- name: Disable & Stop connectd daemon
|
|
systemd:
|
|
name: connectd
|
|
enabled: no
|
|
state: stopped
|
|
when: not remoteit_enabled
|
|
|