mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
10 lines
235 B
Bash
10 lines
235 B
Bash
#!/bin/sh
|
|
#
|
|
# If we have udev running then reload the rules and add the
|
|
# proper subsystems so people can use it
|
|
if [ -S /run/udev/control ]; then
|
|
udevadm control --reload-rules
|
|
udevadm trigger -s leds -s backlight -c add
|
|
fi
|
|
|
|
exit 0
|