| Server IP : 185.143.234.238 / Your IP : 185.215.232.195 Web Server : nginx/1.22.1 System : Linux server2065 6.1.0-35-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.137-1 (2025-05-07) x86_64 User : www-data ( 33) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
set -e
# Automatically added by installdeb-ispell/UNDECLARED
. /usr/share/debconf/confmodule
SCRIPT="update-default-ispell"
if [ "$1" = "configure" ] ; then
if command -v $SCRIPT >/dev/null; 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/UNDECLARED
dico_class="ispell"
dico_vardir="/var/lib/$dico_class"
dico_compat="american.compat"
mkdir -p "$dico_vardir"
for i in $dico_compat; do
>"/var/lib/$dico_class/$i"
done
# End automatically added section