mirror of
https://github.com/ben-grande/qusal.git
synced 2025-01-31 01:23:20 -05:00
aea8438904
- 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
18 lines
517 B
Plaintext
18 lines
517 B
Plaintext
{#
|
|
SPDX-FileCopyrightText: 2023 - 2025 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#}
|
|
|
|
{% if grains['nodename'] != 'dom0' -%}
|
|
{% for unused_dir in ['Desktop','Documents','Downloads','Music','Pictures','Public','Templates','Videos'] -%}
|
|
|
|
{% set full_unused_dir = '/home/user/' ~ unused_dir -%}
|
|
"remove-{{ full_unused_dir }}":
|
|
file.absent:
|
|
- name: {{ full_unused_dir }}
|
|
- onlyif: test -z "$(ls -A -- {{ full_unused_dir }})"
|
|
|
|
{% endfor -%}
|
|
{% endif -%}
|