Default enable --stream by default

Now that we've switched to centos-stream by default it
should be the defualt when tripleo-repos is run.

Change-Id: I4581479df6e69b0f3d233636ee71d028344d230a
This commit is contained in:
John Fulton 2021-04-15 19:10:10 +00:00
parent 0543f7664a
commit e91bd735f7
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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',