melodic-balloon-58806
12/06/2022, 7:45 PM# Add repo and install netclient
- name: add netclient apt-key
apt_key:
url: https://apt.netmaker.org/gpg.key
state: present
- name: add netclient apt repository
apt_repository:
repo: 'deb https:apt.netmaker.org stable main'
state: present
filename: netclient
update_cache: yes
- name: install neclient
apt:
name: netclient
state: present
update_cache: yes