2024-03-23 22:09:49 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2025-01-08 15:52:34 +01:00
|
|
|
## SPDX-FileCopyrightText: 2024 - 2025 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
2024-03-23 22:09:49 +01:00
|
|
|
##
|
|
|
|
## 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}"
|
2024-07-09 17:42:07 +02:00
|
|
|
dnf_min_install="dnf -q install --refresh -y --setopt=install_weak_deps=False"
|
|
|
|
|
2025-01-08 15:52:34 +01:00
|
|
|
qvm-run --no-gui --user=root --pass-io --filter-escape-chars \
|
|
|
|
--no-color-output --no-color-stderr -- "${qube}" \
|
|
|
|
"${dnf_min_install} python3-urllib3"
|