mirror of
https://github.com/ben-grande/qusal.git
synced 2025-07-22 06:08:49 -04:00

- 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
23 lines
673 B
Bash
Executable file
23 lines
673 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
|
|
|
|
set -eu
|
|
|
|
updatevm="$(qubes-prefs -- updatevm)"
|
|
updatevm_class="$(qvm-prefs -- "${updatevm}" klass)"
|
|
proxy_target=""
|
|
case "${updatevm_class}" in
|
|
StandaloneVM) proxy_target="${updatevm}";;
|
|
AppVM) proxy_target="$(qvm-prefs -- "${updatevm}" template)";;
|
|
DispVM)
|
|
proxy_target="$(qvm-prefs -- "${updatevm}" template)"
|
|
proxy_target="$(qvm-prefs -- "${proxy_target}" template)"
|
|
;;
|
|
*) printf '%s\n' "Unsupported qube class" >&2; exit 1;;
|
|
esac
|
|
if test -n "${proxy_target}"; then
|
|
printf '%s\n' "${proxy_target}"
|
|
fi
|