- wla-redhat-Explicitly-list-udev-rule-requirements-in-the.patch [RHEL-84073] - wla-redhat-Include-10-azure-unmanaged-sriov.rules-into-i.patch [RHEL-84073] - Resolves: RHEL-84073 ([Azure][ARM][RHEL-9] Kdump cannot save vmcore via ssh or nfs [rhel-10])
18 lines
276 B
Bash
18 lines
276 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 10-azure-unmanaged-sriov.rules 66-azure-storage.rules 99-azure-product-uuid.rules
|
|
}
|