Server IP : 13.213.54.232 / Your IP : 216.73.216.192 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ip-172-31-17-110 6.8.0-1029-aws #31~22.04.1-Ubuntu SMP Thu Apr 24 21:16:18 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 7.1.33-67+ubuntu22.04.1+deb.sury.org+1 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, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/246939/root/var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh set -e chrooted() { if [ "$(stat -c %d/%i /)" = "$(stat -Lc %d/%i /proc/1/root 2>/dev/null)" ]; then # the devicenumber/inode pair of / is the same as that of /sbin/init's # root, so we're *not* in a chroot and hence return false. return 1 fi echo "A chroot environment has been detected, udev not started." return 0 } in_debootstrap() { # debootstrap --second-stage may be run in an emulator instead of a chroot, # we need to check for this special case because start-stop-daemon would # not be available. (#520742) if [ -d /debootstrap/ ]; then echo "Being installed by debootstrap, udev not started." return 0 fi return 1 } can_start_udevd() { if [ ! -d /sys/class/ ]; then echo "udev requires a mounted sysfs, not started." return 1 fi return 0 } enable_udev() { can_start_udevd || return 0 invoke-rc.d udev start } upgrade_fixes() { : } update_hwdb() { systemd-hwdb --usr update || true } case "$1" in configure) # update/create hwdb before we (re)start udev update_hwdb # Add new system groups used by udev rules addgroup --quiet --system input addgroup --quiet --system sgx # Make /dev/kvm accessible to kvm group addgroup --quiet --system kvm # Make /dev/dri/renderD* accessible to render group addgroup --quiet --system render if [ -z "$2" ]; then # first install if ! chrooted && ! in_debootstrap; then enable_udev fi else # upgrades upgrade_fixes "$@" if ! chrooted; then if can_start_udevd; then if [ -d /run/systemd/system ] ; then systemctl daemon-reload || true fi invoke-rc.d udev restart fi fi fi ;; triggered) update_hwdb exit 0 ;; esac # Automatically added by dh_installtmpfiles/13.6ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # In case this system is running systemd, we need to ensure that all # necessary tmpfiles (if any) are created before starting. if [ -z "${DPKG_ROOT:-}" ] && [ -d /run/systemd/system ] ; then systemd-tmpfiles --create static-nodes-permissions.conf >/dev/null || true fi fi # End automatically added section # Automatically added by dh_installinit/13.6ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -x "/etc/init.d/udev" ]; then update-rc.d udev defaults >/dev/null || exit 1 fi fi # End automatically added section