K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / var / lib / dpkg / info /
server ip : 104.21.89.46

your ip : 172.69.58.119

H O M E


Filename/var/lib/dpkg/info/libglib2.0-0:amd64.postinst
Size1.81 kb
Permissionrwxr-xr-x
Ownerroot : root
Create time27-Apr-2025 09:54
Last modified03-Apr-2014 22:05
Last accessed06-Jul-2025 22:03
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
#!/bin/sh
set -e

if [ "$1" = triggered ]; then
for trigger in $2; do
if ! [ -d $trigger ]; then
continue
fi
case $trigger in
/usr/share/glib-2.0/schemas)
# This is triggered everytime an application installs a
# GSettings schema
/usr/lib/x86_64-linux-gnu/glib-2.0/glib-compile-schemas /usr/share/glib-2.0/schemas || true
;;

/usr/lib/x86_64-linux-gnu/gio/modules|/usr/lib/gio/modules)
# This is triggered everytime an application installs a GIO
# module into /usr/lib/x86_64-linux-gnu/gio/modules or the
# backwards-compatible /usr/lib/gio/modules directory

# The /usr/lib/gio/modules directory is no longer shipped by
# libglib2.0 itself so we need to check to avoid a warning from
# gio-querymodules
dirs=/usr/lib/x86_64-linux-gnu/gio/modules
if [ -d /usr/lib/gio/modules ] && [ $(dpkg --print-architecture) = amd64 ]; then
dirs="$dirs /usr/lib/gio/modules"
fi
/usr/lib/x86_64-linux-gnu/glib-2.0/gio-querymodules $dirs || true
;;
esac
done
exit 0
fi

# Automatically added by dh_makeshlibs
if [ "$1" = "configure" ]; then
ldconfig
fi
# End automatically added section


# Also handle the initial installation
if [ -d /usr/share/glib-2.0/schemas ]; then
/usr/lib/x86_64-linux-gnu/glib-2.0/glib-compile-schemas /usr/share/glib-2.0/schemas || true
fi
if [ -d /usr/lib/x86_64-linux-gnu/gio/modules ]; then
/usr/lib/x86_64-linux-gnu/glib-2.0/gio-querymodules /usr/lib/x86_64-linux-gnu/gio/modules || true
fi
if [ -d /usr/lib/gio/modules ] && [ $(dpkg --print-architecture) = amd64 ]; then
/usr/lib/x86_64-linux-gnu/glib-2.0/gio-querymodules /usr/lib/gio/modules || true
fi