2021-11-03 20:56:23 +00:00
|
|
|
#!/usr/bin/bash
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
check() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
depends() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
install() {
|
2023-03-28 09:40:04 +00:00
|
|
|
inst_multiple cut readlink chmod
|
2021-11-03 20:56:23 +00:00
|
|
|
inst_rules 66-azure-storage.rules 99-azure-product-uuid.rules
|
|
|
|
}
|