Initial Commit

This commit is contained in:
2025-05-08 17:18:59 +03:00
commit 09f5797d32
5 changed files with 95 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
trigger_operations: ["install", "upgrade", "remove"]
target_type: "path"
targets: ["usr/lib/udev/hwdb.d/*.hwdb"]
depends: ["udev"]
run: "udev-hwdb update"
+6
View File
@@ -0,0 +1,6 @@
name: udevd
description: Userspace device file manager daemon
type: background
start_cmd: /etc/esvm/scripts/udevd.sh
stop_cmd: udevadm control -e
exit_method: stop_command
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
udevd --daemon && udevadm trigger --action=add
while udevadm control --ping; do
sleep 0.1
done