Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64
Your IP : 3.147.27.154
Current Path : /var/lib/dpkg/info/ |
| Current File : /var/lib/dpkg/info/udev.prerm |
#!/bin/sh
set -e
# adapted from postinst
chrooted() {
if [ "$(stat -c %d/%i /)" = "$(stat -Lc %d/%i /proc/1/root 2>/dev/null)" ];
then
return 1
fi
return 0
}
kill_udevd() {
if [ -d /run/systemd/system ]; then
systemctl stop systemd-udevd-control.socket systemd-udevd-kernel.socket
systemctl stop systemd-udevd.service
else
invoke-rc.d udev stop
fi
}
case "$1" in
remove)
if ! chrooted; then
kill_udevd
fi
;;
esac
|