[seiscomp, scanloc] Install, add .gitignore

This commit is contained in:
2025-10-09 15:07:02 +02:00
commit 20f5301bb1
2848 changed files with 1315858 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 "$@"