https://netmaker.org logo
FYI, just in case anyone finds it handy, here is t...
# netmaker
m
FYI, just in case anyone finds it handy, here is the ansible for installing netclient on Ubuntu:
Copy code
# 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
3 Views