diff options
Diffstat (limited to 'module-setup-udev.sh')
-rw-r--r-- | module-setup-udev.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/module-setup-udev.sh b/module-setup-udev.sh new file mode 100644 index 0000000..ed7300d --- /dev/null +++ b/module-setup-udev.sh @@ -0,0 +1,17 @@ +#!/usr/bin/bash + +# called by dracut +check() { + return 0 +} + +# called by dracut +depends() { + return 0 +} + +# called by dracut +install() { + inst_multiple cut readlink chmod + inst_rules 66-azure-storage.rules 99-azure-product-uuid.rules +} |