![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh # # Copyright 2009 The Chromium Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. set -e action="$1" if [ "$2" = "in-favour" ]; then # Treat conflict remove as an upgrade. action="upgrade" fi # Don't clean-up just for an upgrade.` if [ "$action" = "upgrade" ] ; then exit 0 fi # Remove icons from the system icons XDG_ICON_RESOURCE="`command -v xdg-icon-resource 2> /dev/null || true`" if [ ! -x "$XDG_ICON_RESOURCE" ]; then echo "Error: Could not find xdg-icon-resource" >&2 exit 1 fi for icon in product_logo_16.png product_logo_256.png product_logo_24.png product_logo_128.png product_logo_64.png product_logo_48.png product_logo_32.png ; do size="$(echo ${icon} | sed 's/[^0-9]//g')" "$XDG_ICON_RESOURCE" uninstall --size "${size}" "google-chrome" done UPDATE_MENUS="`command -v update-menus 2> /dev/null || true`" if [ -x "$UPDATE_MENUS" ]; then update-menus fi # Update cache of .desktop file MIME types. Non-fatal since it's just a cache. update-desktop-database > /dev/null 2>&1 || true # Remove from the alternatives system update-alternatives --remove x-www-browser /usr/bin/google-chrome-stable update-alternatives --remove gnome-www-browser /usr/bin/google-chrome-stable update-alternatives --remove google-chrome /usr/bin/google-chrome-stable