Your IP : 18.116.36.48


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/proftpd-basic.prerm

#!/bin/sh

set -e

if [ -x "/usr/sbin/invoke-rc.d" ]; then
    invoke-rc.d proftpd stop || true
else 
	if [ -x "/etc/init.d/proftpd" ]; then
		/etc/init.d/proftpd stop || true
	fi
fi