2a309c832f
- wla-redhat-Explicitly-list-udev-rule-requirements-in-the.patch [bz#2165042] - Resolves: bz#2165042 ([9.0.z] /dev/disk/azure/ is created as symlink to sr0 or sda and not as a directory[Azure])
18 lines
245 B
Bash
18 lines
245 B
Bash
#!/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
|
|
}
|