From: Vojtech Trefny <vtrefny(a)redhat.com>
---
blivet/deviceaction.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/blivet/deviceaction.py b/blivet/deviceaction.py
index 41b8289..18c6e39 100644
--- a/blivet/deviceaction.py
+++ b/blivet/deviceaction.py
@@ -552,6 +552,8 @@ def execute(self, callbacks=None):
callbacks.create_format_pre(CreateFormatPreData(msg))
if isinstance(self.device, PartitionDevice):
+ # update partedPartition to point to the partition on the disklabel
+ self.device.partedPartition = self.device.disk.format.partedDisk.getPartitionByPath(self.device.path)
for flag in partitionFlag.keys():
# Keep the LBA flag on pre-existing partitions
if flag in [ PARTITION_LBA, self.format.partedFlag ]:
--
To view this commit on github, visit https://github.com/rhinstaller/blivet/commit/e40f1f812810bc25527a705ef47889…
From: Jiri Konecny <jkonecny(a)redhat.com>
We wrote output ks.cfg with "fcoe --nic eth0" but it's different
from the documentation where we have "fcoe --nic=eth0". The output was
modified in order to be consistent with the documentation.
Resolves: rhbz#1225877
---
storage/fcoe.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/storage/fcoe.py b/storage/fcoe.py
index f6823a8..f86d464 100644
--- a/storage/fcoe.py
+++ b/storage/fcoe.py
@@ -150,7 +150,7 @@ def addSan(self, nic, dcb=False, auto_vlan=True, intf=None):
def writeKS(self, f):
for nic, dcb, auto_vlan in self.nics:
if nic in self.ksnics:
- line = "fcoe --nic %s" % nic
+ line = "fcoe --nic=%s" % nic
if dcb:
line += " --dcb"
if auto_vlan:
--
To view this commit on github, visit https://github.com/rhinstaller/anaconda/commit/84b14de5e7ef79db3fee01930f0d…
We wrote output ks.cfg with ``fcoe --nic eth0`` but it's different from the documentation where we have ``fcoe --nic=eth0``. The output was modified in order to be consistent with the documentation.
I don't have fcoe so I couldn't test it. Could you please have a look on this @rvykydal if this seems good to you?
*Resolves: rhbz#1225877*
--
To view this pull request on github, visit https://github.com/rhinstaller/anaconda/pull/465