mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
20 lines
454 B
Bash
Executable file
20 lines
454 B
Bash
Executable file
#!@shell@
|
|
|
|
# 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 /run/current-system/etc/rfkill.hook ]; then
|
|
exec /run/current-system/etc/rfkill.hook
|
|
elif [ ! -z "$RFKILL_HOOK" ]; then
|
|
exec $RFKILL_HOOK
|
|
else
|
|
echo "rfkill-hook: $RFKILL_STATE"
|
|
fi
|