Skip to content

Commit

Permalink
nvme: Require additional rpms for dracut
Browse files Browse the repository at this point in the history
The '95nvmf' dracut module needs a couple more packages
for the NBFT (NVMe over TCP) to work - such as networking.
Local PCIe NVMe devices have no special needs.
  • Loading branch information
tbzatek committed Sep 20, 2023
1 parent 7507965 commit 9dcd32d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion blivet/devices/disk.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,8 @@ class NVMeFabricsNamespaceDevice(NVMeNamespaceDevice, NetworkStorageDevice):

""" NVMe fabrics namespace """
_type = "nvme-fabrics"
_packages = ["nvme-cli"]
# dracut '95nvmf' module dependencies
_packages = ["nvme-cli", "dracut-network"]

def __init__(self, device, **kwargs):
"""
Expand Down

0 comments on commit 9dcd32d

Please sign in to comment.