[installation] Init with inital config for global

This commit is contained in:
2025-10-30 15:08:17 +01:00
commit 7640b452ed
3678 changed files with 2200095 additions and 0 deletions

31
share/db/pkexec_wrapper.sh Executable file
View File

@ -0,0 +1,31 @@
#!/bin/bash
pid=-1
# the cleanup function will be the exit point
cleanup () {
if [ $pid -ne -1 ]
then
kill $pid &>/dev/null
fi
}
if [ $# -eq 0 ]; then
echo "Usage: pkexec_wrapper.sh <cmd>"
exit 0
fi
trap cleanup EXIT ERR INT TERM
cmd=$1
# The fallback agent can only be started when the device /dev/tty
# is available and usable. If this script is started from the
# desktop the tty device may not be available.
if !(test "$(ps -p "$$" -o tty=)" = "?"); then
pkttyagent -p $(echo $$) --fallback &
pid=`echo $!`
fi
pkexec "$@"