0fd8da62b6
Related commit 8d0ea71486
Fixes QubesOS/qubes-issues#4973 and QubesOS/qubes-issues#4929
13 lines
292 B
Bash
13 lines
292 B
Bash
#!/bin/bash
|
|
|
|
if [ -e /usr/sbin/tinyproxy ]; then
|
|
echo "Found tinyproxy at /usr/sbin/tinyproxy"
|
|
/usr/sbin/tinyproxy "$@"
|
|
elif [ -e /usr/bin/tinyproxy ]; then
|
|
echo "Found tinyproxy at /usr/bin/tinyproxy"
|
|
/usr/bin/tinyproxy "$@"
|
|
else
|
|
echo "tinyproxy not found"
|
|
exit 1
|
|
fi
|