mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 12:03:59 +00:00
- netplan_static: avoid Jinja whitespace/indent YAML breakage with trim_blocks; set /etc/netplan perms to 0600; add render+YAML-parse test - dashboard: install concrete conky provider (conky-all) and add defaults test; wire role into site.yml; document dashboard service usage - mariadb: add mariadb parent group for group_vars scope; add group defaults deriving datastore password from vault; add vault entry; add vars resolution test; remove host overrides - misc: update port-forward mappings, generated prole.cfg, and bump prole-db version Co-authored-by: Junie <junie@jetbrains.com>
20 lines
709 B
YAML
20 lines
709 B
YAML
---
|
|
- name: Verify dashboard role defaults are installable on Debian (no virtual packages)
|
|
hosts: localhost
|
|
connection: local
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Load role defaults
|
|
ansible.builtin.include_vars:
|
|
file: "{{ playbook_dir }}/../defaults/main.yml"
|
|
|
|
- name: Ensure conky package is a concrete provider (not the virtual package)
|
|
ansible.builtin.assert:
|
|
that:
|
|
- "'conky' not in dashboard_packages_debian"
|
|
- "'conky-all' in dashboard_packages_debian"
|
|
fail_msg: >-
|
|
dashboard_packages_debian must not include the virtual 'conky' package.
|
|
Use a concrete provider such as 'conky-all', 'conky-std', or 'conky-cli'.
|