mirror of
https://github.com/rancher/os.git
synced 2025-06-30 00:31:49 +00:00
10 lines
121 B
Bash
Executable File
10 lines
121 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$DAEMON" = true ]; then
|
|
exec udevd
|
|
fi
|
|
|
|
udevd --daemon
|
|
udevadm trigger --action=add
|
|
udevadm settle
|