%PDF-1.4 %Óëéá 1 0 obj <> endobj 3 0 obj <> endobj 4 0 obj <
| Server IP : 212.252.79.165 / Your IP : 216.73.217.172 [ Web Server : Apache System : Linux 212-252-79-165.cprapid.com 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64 User : cehaburo ( 1001) PHP Version : 8.1.33 Disable Function : exec,passthru,shell_exec,system Domains : 48 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/cehaburo/public_html/images/product/anon_sym/anon/var/lib/dpkg/info/ |
Upload File : |
#!/bin/bash -e
. /usr/share/debconf/confmodule
case "$1" in
purge)
db_purge
;;
remove)
odbcinst -u -d -n "ODBC Driver 18 for SQL Server"
db_purge
;;
upgrade)
odbcinst -u -d -n "ODBC Driver 18 for SQL Server"
;;
abort-install)
# No need to call odbcinst to remove the driver entry, the driver hasn't been added yet.
# It would also break the existing Driver 13 installation (installed in an old way).
db_purge
;;
abort-upgrade)
# if the user doesn't accept the license we need to set it back to accepted (the state of the
# old package should stay the same).
db_set msodbcsql/accept_eula true
if [ "$2" = "13.0.0.0.preview-1" ]; then
# Because the 13.0.0.0.preview-1 package adds the driver to odbcinst.ini unconditionally,
# it will increase the count upon an unsuccessful upgrade. We need to decrease the count here.
odbcinst -u -d -n "ODBC Driver 13 for SQL Server"
fi
;;
failed-upgrade|disappear)
;;
*)
echo "postrm called with an unknown argument '$1'" >&2
exit 1
esac
exit 0