Server IP : 85.214.239.14 / Your IP : 18.220.139.28 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 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, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/proc/2/cwd/proc/3/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.11.4 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -x "$(command -v systemd-tmpfiles)" ]; then systemd-tmpfiles ${DPKG_ROOT:+--root="$DPKG_ROOT"} --create static-nodes-permissions.conf >/dev/null || true fi fi # End automatically added section # Automatically added by dh_installinit/13.11.4 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