qusal/salt/sys-pihole/prefs.sls
Ben Grande aea8438904
fix: stricter command-line parsing
- Add to qvm-run:
  - no-gui when command doesn't require a GUI
  - filter-escape-chars when pass-io is set and output is not a file,
    such as a pipe that could later be used to print information.
- Change remaining echo to printf
- Add end-of-options separator when possible
2025-01-08 16:12:31 +01:00

48 lines
1.1 KiB
Plaintext

{#
SPDX-FileCopyrightText: 2023 - 2025 Benjamin Grande M. S. <ben.grande.b@gmail.com>
SPDX-License-Identifier: AGPL-3.0-or-later
#}
{% set qube = 'sys-pihole' -%}
{% set running = 0 -%}
{% if salt['cmd.shell']('qvm-ls --no-spinner --raw-list --running -- ' ~ qube) == qube -%}
{% set running = 1 -%}
{% endif -%}
"{{ slsdotpath }}-start":
qvm.start:
- name: {{ slsdotpath }}
"{{ slsdotpath }}-change-prefs":
cmd.script:
- name: prefs.sh
- source: salt://{{ slsdotpath }}/files/admin/prefs.sh
"{{ slsdotpath }}-qubes-prefs-clockvm":
cmd.run:
- require:
- qvm: "{{ slsdotpath }}-start"
- name: qubes-prefs -- clockvm {{ slsdotpath }}
"{{ slsdotpath }}-qubes-prefs-updatevm":
cmd.run:
- require:
- qvm: "{{ slsdotpath }}-start"
- name: qubes-prefs -- updatevm {{ slsdotpath }}
"{{ slsdotpath }}-qubes-prefs-default_netvm":
cmd.run:
- require:
- qvm: "{{ slsdotpath }}-start"
- name: qubes-prefs -- default_netvm {{ slsdotpath }}
{% if running == 0 -%}
"{{ slsdotpath }}-shutdown":
qvm.shutdown:
- name: {{ default_netvm }}
- flags:
- wait
- force
{% endif -%}