Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Default enable --stream by default
Browse files Browse the repository at this point in the history
Now that we've switched to centos-stream by default it
should be the defualt when tripleo-repos is run.

Change-Id: I4581479df6e69b0f3d233636ee71d028344d230a
  • Loading branch information
fultonj committed Apr 16, 2021
1 parent 0543f76 commit e91bd73
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions releasenotes/notes/stream_by_default-783cc6a2208b942c.yaml
@@ -0,0 +1,5 @@
---
features:
- |
tripleo-repos now runs with the --stream argument enabled by default. Use
the --no-stream argument when using tripleo-repos without CentOS stream.
2 changes: 1 addition & 1 deletion tripleo_repos/main.py
Expand Up @@ -199,7 +199,7 @@ def _parse_args(distro_id, distro_major_version_id):
stream_group = parser.add_mutually_exclusive_group()
stream_group.add_argument('--stream',
action='store_true',
default=False,
default=True,
help='Enable stream support for CentOS repos')
stream_group.add_argument('--no-stream',
action='store_true',
Expand Down

0 comments on commit e91bd73

Please sign in to comment.