11 lines
141 B
Bash
Executable File
11 lines
141 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ ! -d /run/udev/ ]; then
|
|
install -m 755 -o root -g root -d /run/udev/
|
|
fi
|
|
|
|
exec 2>&1
|
|
exec /lib/systemd/systemd-udevd
|