mirror of
https://github.com/ben-grande/qusal.git
synced 2025-02-14 06:01:24 -05:00
![Ben Grande](/assets/img/avatar_default.png)
- 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
19 lines
566 B
Bash
Executable File
19 lines
566 B
Bash
Executable File
#!/bin/sh
|
|
|
|
## SPDX-FileCopyrightText: 2024 - 2025 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
##
|
|
## SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
## TODO: Remove when template with patch reaches upstream or updates enforce
|
|
## salt-deps to be installed.
|
|
## https://github.com/QubesOS/qubes-issues/issues/8806
|
|
|
|
set -eu
|
|
|
|
qube="${1}"
|
|
dnf_min_install="dnf -q install --refresh -y --setopt=install_weak_deps=False"
|
|
|
|
qvm-run --no-gui --user=root --pass-io --filter-escape-chars \
|
|
--no-color-output --no-color-stderr -- "${qube}" \
|
|
"${dnf_min_install} python3-urllib3"
|