Change-Id: I3d2bb9cbcf93f5c3a1974205ee70123b6319f882
Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
raise CreatorError("No repositories specified")
def __write_fstab(self):
+ if kickstart.use_installerfw(self.ks, "fstab"):
+ # The fstab file will be generated by installer framework scripts
+ # instead.
+ return None
fstab_contents = self._get_fstab()
if fstab_contents:
fstab = open(self._instroot + "/etc/fstab", "w")
BaseImageCreator.configure(self, repodata)
def _get_fstab(self):
- if kickstart.use_installerfw(self.ks, "fstab"):
- # The fstab file will be generated by installer framework scripts
- # instead.
- return None
-
s = ""
for mp in self.__instloop.mountOrder:
p = None