diff options
Diffstat (limited to 'scripts/lib/mic/imager/direct.py')
-rw-r--r-- | scripts/lib/mic/imager/direct.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/lib/mic/imager/direct.py b/scripts/lib/mic/imager/direct.py index 92473b5bb7..2e6914b86d 100644 --- a/scripts/lib/mic/imager/direct.py +++ b/scripts/lib/mic/imager/direct.py | |||
@@ -217,7 +217,7 @@ class DirectImageCreator(BaseImageCreator): | |||
217 | # | 217 | # |
218 | # Actual implemention | 218 | # Actual implemention |
219 | # | 219 | # |
220 | def _mount_instroot(self, base_on = None): | 220 | def _mount_instroot(self): |
221 | """ | 221 | """ |
222 | For 'wic', we already have our build artifacts and don't want | 222 | For 'wic', we already have our build artifacts and don't want |
223 | to loop mount anything to install into, we just create | 223 | to loop mount anything to install into, we just create |
@@ -296,7 +296,7 @@ class DirectImageCreator(BaseImageCreator): | |||
296 | 296 | ||
297 | self.__instimage.mount() | 297 | self.__instimage.mount() |
298 | 298 | ||
299 | def install(self, repo_urls=None): | 299 | def install(self): |
300 | """ | 300 | """ |
301 | Install fs images into partitions | 301 | Install fs images into partitions |
302 | """ | 302 | """ |
@@ -306,7 +306,7 @@ class DirectImageCreator(BaseImageCreator): | |||
306 | % (disk_name, full_path, disk['min_size'])) | 306 | % (disk_name, full_path, disk['min_size'])) |
307 | self.__instimage.install(full_path) | 307 | self.__instimage.install(full_path) |
308 | 308 | ||
309 | def configure(self, repodata = None): | 309 | def configure(self): |
310 | """ | 310 | """ |
311 | Configure the system image according to kickstart. | 311 | Configure the system image according to kickstart. |
312 | 312 | ||