HEX
Server: Apache/2.4.62 (Debian)
System: Linux MIA-VPS-VM01781 5.10.0-32-amd64 #1 SMP Debian 5.10.223-1 (2024-08-10) x86_64
User: webmaster (1001)
PHP: 8.2.29
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/lib/dpkg/info/pure-ftpd.postinst
#! /bin/sh
# postinst script for all pure-ftpd flavours

set -e

# get settings from debconf
. /usr/share/debconf/confmodule
db_get pure-ftpd/standalone-or-inetd
SOI="$RET"

FLAVOUR=

case "$0" in
	*mysql*)
		chmod 600 /etc/pure-ftpd/db/mysql.conf
		FLAVOUR="mysql"
		;;
	*postgresql*)
		chmod 600 /etc/pure-ftpd/db/postgresql.conf
		FLAVOUR="postgresql"
		;;
	*ldap*)
		chmod 600 /etc/pure-ftpd/db/ldap.conf
		FLAVOUR="ldap"
		;;
esac

if [ "$SOI" = "inetd" ]; then
	test -x "/etc/init.d/pure-ftpd" && /etc/init.d/pure-ftpd stop

	FTPENTRY="ftp stream tcp nowait root /usr/sbin/tcpd /usr/sbin/pure-ftpd-wrapper $FLAVOUR"
	update-inetd --group STANDARD --add "$FTPENTRY"
else
	update-inetd --disable ftp
fi

# Automatically added by dh_installdeb/13.3.1
dpkg-maintscript-helper symlink_to_dir /usr/share/doc/pure-ftpd pure-ftpd-common 1.0.49-4.1~ -- "$@"
# End automatically added section
# Automatically added by dh_installinit/13.3.1
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
	if [ -x "/etc/init.d/pure-ftpd" ]; then
		update-rc.d pure-ftpd defaults >/dev/null
		if [ -n "$2" ]; then
			_dh_action=restart
		else
			_dh_action=start
		fi
		invoke-rc.d pure-ftpd $_dh_action || exit 1
	fi
fi
# End automatically added section


# Don't wait on pure-ftpd to close file handles
db_stop