Home Files
Adminer
Execute Command
PHP Eval
Symlink
File Upload
Owner :
www-data
PHP Version
5.6.40-0+deb8u12
Disk Space
41.00 GB
Server Addr
19-www4
Your IP
10.10.10.40
Edit File
File:
#!/bin/sh set -e # Automatically added by installdeb-ispell . /usr/share/debconf/confmodule SCRIPT="update-default-ispell" if [ "$1" = "configure" ] ; then if which $SCRIPT > /dev/null 2>&1; then $SCRIPT --rebuild else echo "Error: $SCRIPT not present or executable. Missing dependency on dictionaries-common?" >&2 exit 1 fi fi # End automatically added section # Automatically added by installdeb-ispell dico_class="ispell" dico_compat="brasileiro.compat" for i in $dico_compat; do if [ "$1" = "reconfigure" ] || [ -n "$DEBCONF_RECONFIGURE" ] || [ ! -e "/var/lib/$dico_class/$i" ] then >"/var/lib/$dico_class/$i" fi done # End automatically added section