17 lines
208 B
Bash
17 lines
208 B
Bash
|
#!/usr/bin/bash
|
||
|
|
||
|
# called by dracut
|
||
|
check() {
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
# called by dracut
|
||
|
depends() {
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
# called by dracut
|
||
|
install() {
|
||
|
inst_rules 66-azure-storage.rules 99-azure-product-uuid.rules
|
||
|
}
|