| Server IP : 195.114.193.97 / Your IP : 216.73.217.93 Web Server : LiteSpeed System : Linux host 5.15.0-126-generic #136-Ubuntu SMP Wed Nov 6 10:38:22 UTC 2024 x86_64 User : sembi4241 ( 1126) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/lib/dpkg/info/ |
Upload File : |
#! /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.6ubuntu1
dpkg-maintscript-helper symlink_to_dir /usr/share/doc/pure-ftpd-mysql pure-ftpd-common 1.0.49-4.1\~ -- "$@"
# End automatically added section
# Automatically added by dh_installinit/13.6ubuntu1
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
if [ -z "${DPKG_ROOT:-}" ] && [ -x "/etc/init.d/pure-ftpd-mysql" ]; then
update-rc.d pure-ftpd-mysql defaults >/dev/null
if [ -n "$2" ]; then
_dh_action=restart
else
_dh_action=start
fi
invoke-rc.d pure-ftpd-mysql $_dh_action || exit 1
fi
fi
# End automatically added section
# Don't wait on pure-ftpd to close file handles
db_stop