mirror of
https://github.com/ben-grande/qusal.git
synced 2025-02-13 05:31:23 -05:00
![Ben Grande](/assets/img/avatar_default.png)
Document qusal.ConnectTCP in dev's Access Control as it defaults to deny and causes confusion to users why it doesn't work by default. This is an exception of the rule that a formula cannot document the RPC service of another formula to avoid duplication.
22 lines
549 B
Bash
Executable File
22 lines
549 B
Bash
Executable File
#!/bin/sh
|
|
|
|
## SPDX-FileCopyrightText: 2024 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 "$(qvm-prefs "${updatevm}" template)" template)"
|
|
;;
|
|
esac
|
|
if test -n "${proxy_target}"; then
|
|
echo "${proxy_target}"
|
|
fi
|