예제 #1
0
 def parse_sync_group(self, user_input):
     config = ImporterConfigMixin.parse_sync_group(self, user_input)
     safe_parse(user_input, config, repo_options.OPT_SKIP.keyword, constants.CONFIG_SKIP)
     safe_parse(user_input, config, repo_options.OPT_REQUIRE_SIG.keyword,
                constants.CONFIG_REQUIRE_SIGNATURE)
     safe_parse(user_input, config, repo_options.OPT_ALLOWED_KEYS.keyword,
                constants.CONFIG_ALLOWED_KEYS)
     return config
예제 #2
0
 def parse_sync_group(self, user_input):
     config = ImporterConfigMixin.parse_sync_group(self, user_input)
     safe_parse(user_input, config,
                self.options_bundle.opt_releases.keyword,
                CONFIG_KEY_RELEASES)
     safe_parse(user_input, config,
                self.options_bundle.opt_components.keyword,
                CONFIG_KEY_COMPONENTS)
     safe_parse(user_input, config,
                self.options_bundle.opt_architectures.keyword,
                CONFIG_KEY_ARCHITECTURES)
     safe_parse(user_input, config, repo_options.OPT_SKIP.keyword,
                CONFIG_KEY_SKIP)
     return config
예제 #3
0
 def parse_sync_group(self, user_input):
     config = ImporterConfigMixin.parse_sync_group(self, user_input)
     safe_parse(user_input, config,
                self.options_bundle.opt_releases.keyword,
                CONFIG_KEY_RELEASES)
     safe_parse(user_input, config,
                self.options_bundle.opt_components.keyword,
                CONFIG_KEY_COMPONENTS)
     safe_parse(user_input, config,
                self.options_bundle.opt_architectures.keyword,
                CONFIG_KEY_ARCHITECTURES)
     safe_parse(user_input, config, repo_options.OPT_SKIP.keyword,
                CONFIG_KEY_SKIP)
     safe_parse(user_input, config,
                self.options_bundle.opt_require_signature.keyword,
                constants.CONFIG_REQUIRE_SIGNATURE)
     safe_parse(user_input, config,
                self.options_bundle.opt_allowed_keys.keyword,
                constants.CONFIG_ALLOWED_KEYS)
     return config
예제 #4
0
 def parse_sync_group(self, user_input):
     config = ImporterConfigMixin.parse_sync_group(self, user_input)
     safe_parse(user_input, config, repo_options.OPT_SKIP.keyword, CONFIG_KEY_SKIP)
     return config
예제 #5
0
 def parse_sync_group(self, user_input):
     config = ImporterConfigMixin.parse_sync_group(self, user_input)
     safe_parse(user_input, config, repo_options.OPT_SKIP.keyword,
                CONFIG_KEY_SKIP)
     return config