/usr/lib/firebird/2.1/bin/wrapper is in firebird2.1-common 2.1.4.18393-0.ds2-6build1.
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 | #!/bin/sh
set -e
FB_VER=2.1
export FIREBIRD=${FIREBIRD:-/usr/lib/firebird/$FB_VER}
export FIREBIRD_LOCK=${FIREBIRD_LOCK:-/var/run/firebird/$FB_VER}
PROG=`basename $0`
exec $FIREBIRD/bin/$PROG.real "$@"
|