Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : 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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh # $Id: postrm,v 1.1.1.1 2004/05/07 03:12:59 john Exp $ # Postrm for pppconfig by John Hasler 1999-2003 # Any possessor of a copy of this program may treat it as if it # were in the public domain. I waive all rights. set -e if [ "$1" = "purge" ] ; then rm -rf /lib/pppconfig rm -rf /etc/ppp/resolv rm -rf /var/run/pppconfig rm -rf /var/run/pppconfig/resolv* rm -rf /var/run/pppconfig/0dns* update-rc.d dns-clean remove > /dev/null fi if [ -x "`which update-menus`" ] ; then update-menus fi # Automatically added by dh_systemd_enable if [ "$1" = "remove" ]; then if [ -x "/usr/bin/deb-systemd-helper" ]; then deb-systemd-helper mask dns-clean.service >/dev/null fi fi if [ "$1" = "purge" ]; then if [ -x "/usr/bin/deb-systemd-helper" ]; then deb-systemd-helper purge dns-clean.service >/dev/null deb-systemd-helper unmask dns-clean.service >/dev/null fi fi # End automatically added section exit 0