mirror of
https://github.com/peridotbuild/pv2.git
synced 2024-11-23 13:41:26 +00:00
ready option not needed
This commit is contained in:
parent
1f22fc3196
commit
a4136a972b
@ -195,7 +195,9 @@ class Import:
|
||||
if os.path.exists('/usr/sbin/restorecon'):
|
||||
processor.run_proc_foreground_shell(f'/usr/sbin/restorecon {dest_path}')
|
||||
@staticmethod
|
||||
def upload_to_s3(repo_path, file_dict: dict, bucket, aws_key_id: str, aws_secret_key: str):
|
||||
# pylint: disable=too-many-arguments
|
||||
def upload_to_s3(repo_path, file_dict: dict, bucket, aws_key_id: str,
|
||||
aws_secret_key: str, overwrite: bool = False):
|
||||
"""
|
||||
Upload an object to s3
|
||||
"""
|
||||
@ -204,7 +206,8 @@ class Import:
|
||||
source_path = f'{repo_path}/{name}'
|
||||
dest_name = sha
|
||||
upload.upload_to_s3(source_path, bucket, aws_key_id,
|
||||
aws_secret_key, dest_name=dest_name)
|
||||
aws_secret_key, dest_name=dest_name,
|
||||
overwrite=overwrite)
|
||||
|
||||
@staticmethod
|
||||
def import_lookaside_peridot_cli(
|
||||
|
@ -340,7 +340,6 @@ class MockConfig(MockConfigUtils):
|
||||
packager: str = 'Default Packager <packager@noone.home>',
|
||||
distsuffix=None,
|
||||
distribution=None,
|
||||
bootstrap_image_ready=False,
|
||||
use_bootstrap_image=False,
|
||||
**kwargs
|
||||
):
|
||||
@ -420,7 +419,6 @@ class MockConfig(MockConfigUtils):
|
||||
'rpmbuild_networking': enable_networking,
|
||||
'print_main_output': print_main_output,
|
||||
'macros': default_macros,
|
||||
'bootstrap_image_ready': bootstrap_image_ready,
|
||||
'use_bootstrap_image': use_bootstrap_image,
|
||||
}
|
||||
self.__config_opts.update(**kwargs)
|
||||
|
Loading…
Reference in New Issue
Block a user