/usr/bin/gufw-pkexec is in gufw 16.04.1-0ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash
LOCATIONS=(
"/usr/share/gufw/gufw/gufw.py"
"/usr/lib/python2.7/site-packages/gufw/gufw.py"
"/usr/lib/python2.6/site-packages/gufw/gufw.py"
"/usr/lib/python2.7/dist-packages/gufw/gufw.py"
"/usr/lib/python2.6/dist-packages/gufw/gufw.py"
)
for ((i = 0; i < ${#LOCATIONS[@]}; i++))
do
if [[ -e "${LOCATIONS[${i}]}" ]]; then
python ${LOCATIONS[${i}]} $1
fi
done
|