We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de76e43 + 0d17237 commit 78cab43Copy full SHA for 78cab43
qubes-keepass-dom0.sh
@@ -63,6 +63,14 @@ function main() {
63
set -e
64
set -x
65
66
+ qvm-check "${VAULT}"
67
+
68
+ if [ $? -ne 0 ]; then
69
+ echo "[-] Your vault qube ${VAULT} is not running yet."
70
+ echo "[-] Aborting to prevent unwanted qube startup."
71
+ return
72
+ fi
73
74
local ID=$(get_id)
75
local VM=$(get_xprop "${ID}" '_QUBES_VMNAME(STRING)' 'str')
76
local LABEL=$(get_xprop "${ID}" '_QUBES_LABEL(CARDINAL)' 'int')
qubes-keepass.py
@@ -443,7 +443,7 @@ def load(path: str = None) -> Config:
443
Config
444
'''
445
if path is not None:
446
- config_path = Path(path)
+ config_file = Path(path)
447
448
else:
449
0 commit comments