mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-23 14:50:25 +00:00
In debian/rules, remove manual file installation. Move them to debian/*.install. Move all Debian specific installed files to debian/extra/.
27 lines
554 B
Bash
Executable File
27 lines
554 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ -w /sys/kernel/uevent_helper ]; then
|
|
echo > /sys/kernel/uevent_helper
|
|
fi
|
|
|
|
if ! grep -E -q "^[^[:space:]]+ /dev devtmpfs" /proc/mounts; then
|
|
mount -n -o mode=0755 -t devtmpfs devtmpfs /dev
|
|
fi
|
|
|
|
/lib/systemd/systemd-udevd --daemon --resolve-names=never
|
|
|
|
udevadm trigger --action=add
|
|
|
|
mkdir -p /dev/pts
|
|
mount -t devpts -o noexec,nosuid,gid=5,mode=0620 devpts /dev/pts
|
|
|
|
udevadm settle || true
|
|
|
|
if [ -d /sys/bus/scsi ]; then
|
|
modprobe -q scsi_wait_scan && modprobe -r scsi_wait_scan || true
|
|
udevadm settle || true
|
|
fi
|
|
|
|
exit 0
|
|
|