diff options
| author | Ahmed AbdelHalim <[email protected]> | 2026-07-17 15:40:59 +0200 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2026-07-17 15:40:59 +0200 |
| commit | 282a44b5899a08db3fb245de7043bb0bbd73cde6 (patch) | |
| tree | 29daf2e814be989fbf8033ecf9353c8417e516bf /roles/cloudflared/tasks/main.yml | |
| parent | 421d03ba5446415bfe831a8618ff8238fd0c382c (diff) | |
Add cloudflare tunnel configurations
Diffstat (limited to 'roles/cloudflared/tasks/main.yml')
| -rw-r--r-- | roles/cloudflared/tasks/main.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/cloudflared/tasks/main.yml b/roles/cloudflared/tasks/main.yml new file mode 100644 index 00000000..e4a3b36e --- /dev/null +++ b/roles/cloudflared/tasks/main.yml @@ -0,0 +1,7 @@ +--- +- name: "Skip if tunnel token not defined" + when: cloudflared_tunnel_token is not defined + ansible.builtin.meta: end_role + +- name: "Include OS-specific installation tasks" + ansible.builtin.include_tasks: "install-{{ ansible_facts['os_family'] | lower }}.yml" |
