diff options
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/imager/fs_plugin.py | 3 | ||||
-rwxr-xr-x | plugins/imager/loop_plugin.py | 3 | ||||
-rwxr-xr-x | plugins/imager/qcow_plugin.py | 3 | ||||
-rwxr-xr-x | plugins/imager/raw_plugin.py | 2 |
4 files changed, 2 insertions, 9 deletions
diff --git a/plugins/imager/fs_plugin.py b/plugins/imager/fs_plugin.py index b573127..86b1849 100755 --- a/plugins/imager/fs_plugin.py +++ b/plugins/imager/fs_plugin.py @@ -95,7 +95,6 @@ class FsPlugin(ImagerPlugin): #Download the source packages ###private options if args.include_src: installed_pkgs = creator.get_installed_packages() - msger.info('--------------------------------------------------') msger.info('Generating the image with source rpms included ...') if not misc.SrcpkgsDownload(installed_pkgs, creatoropts["repomd"], creator._instroot, creatoropts["cachedir"]): @@ -103,8 +102,6 @@ class FsPlugin(ImagerPlugin): creator.configure(creatoropts["repomd"]) creator.copy_kernel() - if creatoropts['cpio']: - creator.create_cpio_image() creator.unmount() creator.package(creatoropts["destdir"]) creator.create_manifest() diff --git a/plugins/imager/loop_plugin.py b/plugins/imager/loop_plugin.py index 50aab52..6005f46 100755 --- a/plugins/imager/loop_plugin.py +++ b/plugins/imager/loop_plugin.py @@ -102,8 +102,7 @@ class LoopPlugin(ImagerPlugin): creator.install() creator.configure(creatoropts["repomd"]) creator.copy_kernel() - if creatoropts['cpio']: - creator.create_cpio_image() + creator.create_cpio_image() creator.unmount() creator.package(creatoropts["destdir"]) creator.create_manifest() diff --git a/plugins/imager/qcow_plugin.py b/plugins/imager/qcow_plugin.py index cfbbd66..76339a5 100755 --- a/plugins/imager/qcow_plugin.py +++ b/plugins/imager/qcow_plugin.py @@ -133,8 +133,7 @@ class QcowPlugin(ImagerPlugin): creator.install() creator.configure(creatoropts["repomd"]) creator.copy_kernel() - if creatoropts['cpio']: - creator.create_cpio_image() + creator.create_cpio_image() creator.unmount() creator.package(creatoropts["destdir"]) creator.create_manifest() diff --git a/plugins/imager/raw_plugin.py b/plugins/imager/raw_plugin.py index 0df535c..09a9714 100755 --- a/plugins/imager/raw_plugin.py +++ b/plugins/imager/raw_plugin.py @@ -100,8 +100,6 @@ class RawPlugin(ImagerPlugin): creator.install() creator.configure(creatoropts["repomd"]) creator.copy_kernel() - if creatoropts['cpio']: - creator.create_cpio_image() creator.unmount() creator.generate_bmap() creator.package(creatoropts["destdir"]) |