Init some skeleton nebula stuff
This commit is contained in:
19
ansible/roles/nebula/tasks/main.yml
Normal file
19
ansible/roles/nebula/tasks/main.yml
Normal file
@ -0,0 +1,19 @@
|
||||
- name: Install Nebula
|
||||
package:
|
||||
name: nebula
|
||||
when: ansible_os_family == 'Archlinux'
|
||||
become: true
|
||||
|
||||
- name: Create nebula directory
|
||||
file:
|
||||
path: /etc/nebula
|
||||
state: directory
|
||||
mode: "0700"
|
||||
become: true
|
||||
|
||||
- name: Install nebula config
|
||||
template:
|
||||
src: files/nebula.yml
|
||||
dest: /etc/nebula/config.yml
|
||||
mode: "0600"
|
||||
become: true
|
Reference in New Issue
Block a user