rfkill udev package.

svn path=/nixpkgs/trunk/; revision=32532
This commit is contained in:
Arie Middelkoop
2012-02-24 01:35:59 +00:00
parent ed813f3955
commit 1b2d50c14f
3 changed files with 70 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/sh
# Executes a hook in case of a change to the
# rfkill state. The hook can be passed as
# environment variable, or present as executable
# file.
if [ -z "$RFKILL_STATE" ]; then
echo "rfkill-hook: error: RFKILL_STATE variable not set"
exit 1
fi
if [ -x /var/run/current-system/etc/rfkill.hook ]; then
exec /var/run/current-system/etc/rfkill.hook
elif [ ! -z "$RFKILL_HOOK" ]; then
exec $RFKILL_HOOK
else
echo "rfkill-hook: $RFKILL_STATE"
fi