mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-21 19:57:15 +00:00

* append devlinks to dev_list * replace eudev-libs with eudev * include only devlinks starting with /dev/serial/by-id * add missing package, move udev init to entry.sh * fix mode on entry.sh * Update homeassistant.py * Update homeassistant.py
14 lines
161 B
Bash
Executable File
14 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
udevd --daemon
|
|
udevadm trigger
|
|
|
|
if CMD="$(command -v "$1")"; then
|
|
shift
|
|
exec "$CMD" "$@"
|
|
else
|
|
echo "Command not found: $1"
|
|
exit 1
|
|
fi
|