2021-06-24 10:09:45 +00:00
|
|
|
#!/usr/bin/bash
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
check() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
depends() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
install() {
|
2023-02-06 08:25:40 +00:00
|
|
|
inst_multiple cut readlink chmod
|
2021-06-24 10:09:45 +00:00
|
|
|
inst_rules 66-azure-storage.rules 99-azure-product-uuid.rules
|
|
|
|
}
|