Louis Abel
1be345119f
* Provide most options for nebula config * Provide ability for future modifications to use other distros * Provide information on usable variables in README
19 lines
400 B
YAML
19 lines
400 B
YAML
---
|
|
- name: Set specific facts
|
|
ansible.builtin.set_fact:
|
|
nebula_bin_dir: "{{ nebula_local_bin_dir }}"
|
|
|
|
- name: Not supported yet
|
|
ansible.builtin.debug:
|
|
msg: "Downloading nebula without a package manager is not supported yet."
|
|
|
|
- name: End prematurely
|
|
ansible.builtin.fail:
|
|
msg: "Exiting."
|
|
|
|
# Steps to perform:
|
|
# -> download
|
|
# -> setup appropriate dirs
|
|
# -> drop systemd unit
|
|
...
|