feat: restructure CIFS configuration and include golink service tasks in Ansible playbook
Some checks failed
Nix Format Check / check-format (push) Failing after 38s
Some checks failed
Nix Format Check / check-format (push) Failing after 38s
This commit is contained in:
@ -1,4 +1,6 @@
|
||||
---
|
||||
- name: Configure CIFS
|
||||
block:
|
||||
- name: Install CIFS utilities
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
|
@ -13,4 +13,5 @@
|
||||
ansible.builtin.include_tasks: services/services.yml
|
||||
vars:
|
||||
duplicati_enabled: true
|
||||
golink_enabled: true
|
||||
when: ansible_hostname == "mennos-cloud-server"
|
||||
|
@ -3,3 +3,7 @@
|
||||
- name: Include duplicati tasks
|
||||
ansible.builtin.include_tasks: duplicati/duplicati.yml
|
||||
when: duplicati_enabled|bool
|
||||
|
||||
- name: Include golink tasks
|
||||
ansible.builtin.include_tasks: golink/golink.yml
|
||||
when: golink_enabled|bool
|
||||
|
Reference in New Issue
Block a user