diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-11-23 15:37:37 -0200 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-11-23 15:37:37 -0200 |
commit | b19aa2f64b1d83caef5baef1c21c3303b5cbd6f9 (patch) | |
tree | fb6fcd42bf1a8df86f9c5e35010d143bd542f2d4 /pcr/systemd-knock/initcpio-hook-udev | |
parent | 845f51778cf9597d9625459c2f274b40ddeab1fc (diff) | |
download | abslibre-b19aa2f64b1d83caef5baef1c21c3303b5cbd6f9.tar.gz abslibre-b19aa2f64b1d83caef5baef1c21c3303b5cbd6f9.tar.bz2 abslibre-b19aa2f64b1d83caef5baef1c21c3303b5cbd6f9.zip |
add systemd-knock package
Diffstat (limited to 'pcr/systemd-knock/initcpio-hook-udev')
-rw-r--r-- | pcr/systemd-knock/initcpio-hook-udev | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pcr/systemd-knock/initcpio-hook-udev b/pcr/systemd-knock/initcpio-hook-udev new file mode 100644 index 000000000..ea9a11f8c --- /dev/null +++ b/pcr/systemd-knock/initcpio-hook-udev @@ -0,0 +1,22 @@ +#!/usr/bin/ash + +run_earlyhook() { + kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf + systemd-tmpfiles --prefix=/dev --create --boot + /usr/lib/systemd/systemd-udevd --daemon --resolve-names=never + udevd_running=1 +} + +run_hook() { + msg ":: Triggering uevents..." + udevadm trigger --action=add --type=subsystems + udevadm trigger --action=add --type=devices + udevadm settle +} + +run_cleanuphook() { + udevadm control --exit + udevadm info --cleanup-db +} + +# vim: set ft=sh ts=4 sw=4 et: |