def _configure_repos(self, opts): repo_setopts = opts.repo_setopts if hasattr(opts, 'repo_setopts') else {} self.base.read_all_repos(repo_setopts) if opts.repofrompath: for label, path in opts.repofrompath.items(): if '://' not in path: path = 'file://{}'.format(os.path.abspath(path)) repofp = dnf.repo.Repo(label, self.base.conf.cachedir) try: repofp.baseurl = path except ValueError as e: raise dnf.exceptions.RepoError(e) self.base.repos.add(repofp) logger.info(_("Added %s repo from %s"), label, path) # do not let this repo to be disabled opts.repos_ed.append((label, "enable")) if opts.repo: opts.repos_ed.insert(0, ("*", "disable")) opts.repos_ed.extend([(r, "enable") for r in opts.repo]) # Process repo enables and disables in order try: for (repo, operation) in opts.repos_ed: repolist = self.base.repos.get_matching(repo) if not repolist: msg = _("Unknown repo: '%s'") raise dnf.exceptions.RepoError(msg % repo) if operation == "enable": repolist.enable() else: repolist.disable() except dnf.exceptions.ConfigError as e: logger.critical(e) self.optparser.print_help() sys.exit(1) if self.nogpgcheck: for repo in self.base.repos.values(): repo.gpgcheck = False repo.repo_gpgcheck = False for rid in self.base._repo_persistor.get_expired_repos(): repo = self.base.repos.get(rid) if repo: repo.md_expire_cache() if opts.cacheonly: self.demands.cacheonly = True for repo in self.base.repos.values(): repo.basecachedir = self._system_cachedir repo.md_only_cached = True # setup the progress bars/callbacks (bar, self.base._ds_callback) = self.base.output.setup_progress_callbacks() self.base.repos.all().set_progress_bar(bar) key_import = output.CliKeyImport(self.base, self.base.output) self.base.repos.all().set_key_import(key_import)
def _configure_repos(self, opts): self.base.read_all_repos(opts) if opts.repofrompath: for label, path in opts.repofrompath.items(): if '://' not in path: path = 'file://{}'.format(os.path.abspath(path)) repofp = dnf.repo.Repo(label, self.base.conf) try: repofp.baseurl = path except ValueError as e: raise dnf.exceptions.RepoError(e) self.base.repos.add(repofp) logger.info(_("Added %s repo from %s"), label, path) # do not let this repo to be disabled opts.repos_ed.append((label, "enable")) if opts.repo: opts.repos_ed.insert(0, ("*", "disable")) opts.repos_ed.extend([(r, "enable") for r in opts.repo]) notmatch = set() # Process repo enables and disables in order try: for (repo, operation) in opts.repos_ed: repolist = self.base.repos.get_matching(repo) if not repolist: if self.base.conf.strict and operation == "enable": msg = _("Unknown repo: '%s'") raise dnf.exceptions.RepoError(msg % repo) notmatch.add(repo) if operation == "enable": repolist.enable() else: repolist.disable() except dnf.exceptions.ConfigError as e: logger.critical(e) self.optparser.print_help() sys.exit(1) for repo in notmatch: logger.warning(_("No repository match: %s"), repo) for rid in self.base._repo_persistor.get_expired_repos(): repo = self.base.repos.get(rid) if repo: repo._md_expire_cache() # setup the progress bars/callbacks (bar, self.base._ds_callback) = self.base.output.setup_progress_callbacks() self.base.repos.all().set_progress_bar(bar) key_import = output.CliKeyImport(self.base, self.base.output) self.base.repos.all()._set_key_import(key_import)
def _configure_repos(self, opts): self.base.read_all_repos(opts) if opts.repofrompath: for label, path in opts.repofrompath.items(): this_repo = self.base.repos.add_new_repo(label, self.base.conf, baseurl=[path]) this_repo._configure_from_options(opts) # do not let this repo to be disabled opts.repos_ed.append((label, "enable")) if opts.repo: opts.repos_ed.insert(0, ("*", "disable")) opts.repos_ed.extend([(r, "enable") for r in opts.repo]) notmatch = set() # Process repo enables and disables in order try: for (repo, operation) in opts.repos_ed: repolist = self.base.repos.get_matching(repo) if not repolist: if self.base.conf.strict and operation == "enable": msg = _("Unknown repo: '%s'") raise dnf.exceptions.RepoError(msg % repo) notmatch.add(repo) if operation == "enable": repolist.enable() else: repolist.disable() except dnf.exceptions.ConfigError as e: logger.critical(e) self.optparser.print_help() sys.exit(1) for repo in notmatch: logger.warning(_("No repository match: %s"), repo) expired_repos = self.base._repo_persistor.get_expired_repos() if expired_repos is None: expired_repos = self.base.repos.keys() for rid in expired_repos: repo = self.base.repos.get(rid) if repo: repo._repo.expire() # setup the progress bars/callbacks (bar, self.base._ds_callback) = self.base.output.setup_progress_callbacks() self.base.repos.all().set_progress_bar(bar) key_import = output.CliKeyImport(self.base, self.base.output) self.base.repos.all()._set_key_import(key_import)
def _configure_repos(self, opts): self.base.read_all_repos(self.repo_setopts) if opts.repofrompath: for label, path in opts.repofrompath.items(): if path[0] == '/': path = 'file://' + path repofp = dnf.repo.Repo(label, self.base.conf.cachedir) repofp.baseurl = path self.base.repos.add(repofp) logger.info(_("Added %s repo from %s") % (label, path)) # Process repo enables and disables in order try: for (repo, operation) in opts.repos_ed: repolist = self.base.repos.get_matching(repo) if not repolist: msg = _("Unknown repo: '%s'") raise dnf.exceptions.RepoError(msg % repo) if operation == "enable": repolist.enable() else: repolist.disable() except dnf.exceptions.ConfigError as e: logger.critical(e) self.print_usage() sys.exit(1) if self.nogpgcheck: for repo in self.base.repos.values(): repo.gpgcheck = False repo.repo_gpgcheck = False for rid in self.base.repo_persistor.get_expired_repos(): repo = self.base.repos.get(rid) if repo: repo.md_expire_cache() if opts.cacheonly: self.demands.cacheonly = True for repo in self.base.repos.values(): repo.basecachedir = self._system_cachedir repo.md_only_cached = True # setup the progress bars/callbacks (bar, self.base.ds_callback) = self.base.output.setup_progress_callbacks() self.base.repos.all().set_progress_bar(bar) key_import = output.CliKeyImport(self.base, self.base.output) self.base.repos.all().set_key_import(key_import)
def _configure_repos(self, opts): self.base.read_all_repos(self.repo_setopts) # Process repo enables and disables in order try: for (repo, operation) in opts.repos_ed: repolist = self.base.repos.get_matching(repo) if not repolist: msg = _("Unknown repo: '%s'") raise dnf.exceptions.RepoError(msg % repo) if operation == "enable": repolist.enable() else: repolist.disable() except dnf.exceptions.ConfigError as e: logger.critical(e) self.print_usage() sys.exit(1) if self.nogpgcheck: for repo in self.base.repos.values(): repo.gpgcheck = False repo.repo_gpgcheck = False for rid in self.base._persistor.get_expired_repos(): repo = self.base.repos.get(rid) if repo: repo.md_expire_cache() if opts.cacheonly: for repo in self.base.repos.values(): repo.basecachedir = self._system_cachedir repo.md_only_cached = True # setup the progress bars/callbacks (bar, self.base.ds_callback) = self.base.output.setup_progress_callbacks() self.base.repos.all().set_progress_bar(bar) key_import = output.CliKeyImport(self.base, self.base.output) self.base.repos.all().set_key_import(key_import)