/etc/xinetd.d/firebird21 is in firebird2.1-classic 2.1.4.18393-0.ds2-6build1.
This file is owned by root:root, with mode 0o644.
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 16 17 18 19 20 21 | # default: off
# description: FirebirdSQL classic server, v2.1
#
# firebird2.1-classic uses /etc/inetd.conf by default
# If you choose to enable this service, remember to disable the one provided by
# inetd. The easiest way for this is:
# update-inetd --disable gds_db
#
service gds_db
{
disable = yes
flags = REUSE NODELAY
socket_type = stream
wait = no
user = firebird
# These lines cause problems with Windows XP SP2 clients
# using default firewall configuration (SF#1065511)
# log_on_success += USERID
# log_on_failure += USERID
server = /usr/lib/firebird/2.1/bin/fb_inet_server
}
|