Wallet: Repeat Check for Wallet with delay

This commit is contained in:
Daniel Pätzold
2026-04-12 19:18:34 +02:00
parent df29674158
commit df498ca45a
2 changed files with 11 additions and 4 deletions
+3 -2
View File
@@ -52,7 +52,8 @@ if [[ ! -z ${WALLET_PID} ]]; then
exit 1
fi
fi
kill ${WALLET_PID} && sleep 0.5 && echo "Service kwalletd6 (${WALLET_PID}) was stopped."
echo "Stopping kwalletd6 with PID ${WALLET_PID}"
kill ${WALLET_PID} && sleep 0.5
if [[ $? -ne 0 ]]; then
echo "Kwallet Service could not be stopped, please check why."
exit 1
@@ -112,5 +113,5 @@ if [[ $? -ne 0 ]]; then
echo "Error bind mounting secure Files to Wallet. Please check what went wrong."
exit 1
fi
echo "Done setting up kwallet from secure user folder."
exit 0