We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a repository that I prefer to leave disabled until I explicitly enable it, but cob doesn't support this scenario.
The following seems to do the trick, but I'd rather you patch it (knowing the yum codebase a bit better than myself):
In init_hook, instead of
init_hook
if isinstance(repo, YumRepository) and repo.enabled:
just
if isinstance(repo, YumRepository):
And in S3Repository.__init__:
S3Repository.__init__
if repo.enabled: self.enable()
The text was updated successfully, but these errors were encountered:
@rmt thanks for your info, i am looking into this issue now.
Sorry, something went wrong.
No branches or pull requests
I have a repository that I prefer to leave disabled until I explicitly enable it, but cob doesn't support this scenario.
The following seems to do the trick, but I'd rather you patch it (knowing the yum codebase a bit better than myself):
In
init_hook
, instead ofjust
And in
S3Repository.__init__
:The text was updated successfully, but these errors were encountered: