diff --git a/man/subscription-manager.8 b/man/subscription-manager.8 index 9bb4ca635e..777cf59246 100644 --- a/man/subscription-manager.8 +++ b/man/subscription-manager.8 @@ -614,17 +614,17 @@ command lists all of the subscriptions that are compatible with a system. The op .B --afterdate=YYYY-MM-DD Shows pools that are active on or after the given date. This is only used with the .B --available -option. +option. (deprecated) .TP .B --all Lists all possible subscriptions that have been purchased, even if they don't match the architecture of the system. This is used with the .B --available -option. +option. (deprecated) .TP .B --available -Lists available subscriptions which are not yet attached to the system. +Lists available subscriptions which are not yet attached to the system. (deprecated) .TP .B --consumed @@ -638,19 +638,19 @@ Lists products which are currently installed on the system which may (or may not .B --ondate=YYYY-MM-DD Sets the date to use to search for active and available subscriptions. The default (if not explicitly passed) is today's date; using a later date looks for subscriptions which will be active then. This is only used with the .B --available -option. +option. (deprecated) .TP .B --no-overlap Shows pools which provide products that are not already covered; only used with .B --available -option. +option. (deprecated) .TP .B --match-installed Shows only subscriptions matching products that are currently installed; only used with .B --available -option. +option. (deprecated) .TP .B --matches=SEARCH @@ -661,7 +661,7 @@ question mark or asterisk. Likewise, to represent a backslash, it must be escape .TP .B --pool-only -Limits the output of --available and --consumed such that only the pool IDs are displayed. No labels or errors will be printed if this option is specified. +Limits the output of --available and --consumed such that only the pool IDs are displayed. No labels or errors will be printed if this option is specified. (deprecated) .SS REFRESH OPTIONS The diff --git a/src/subscription_manager/cli_command/list.py b/src/subscription_manager/cli_command/list.py index 3c0915fa90..131b69d0b3 100644 --- a/src/subscription_manager/cli_command/list.py +++ b/src/subscription_manager/cli_command/list.py @@ -217,18 +217,19 @@ def __init__(self): self.parser.add_argument( "--available", action="store_true", - help=_("show those subscriptions which are available"), + help=_("show those subscriptions which are available (deprecated)"), ) self.parser.add_argument( "--all", action="store_true", - help=_("used with --available to ensure all subscriptions are returned"), + help=_("used with --available to ensure all subscriptions are returned (deprecated)"), ) self.parser.add_argument( "--ondate", dest="on_date", help=_( - "date to search on, defaults to today's date, only used with --available (example: {example})" + "date to search on, defaults to today's date, " + "only used with --available (example: {example}) (deprecated)" ).format(example=strftime("%Y-%m-%d", localtime())), ) self.parser.add_argument( @@ -241,7 +242,7 @@ def __init__(self): dest="service_level", help=_( "shows only subscriptions matching the specified service level; " - "only used with --available and --consumed" + "only used with --available and --consumed (deprecated)" ), ) self.parser.add_argument( @@ -249,7 +250,7 @@ def __init__(self): action="store_true", help=_( "shows pools which provide products that are not already covered; " - "only used with --available" + "only used with --available (deprecated)" ), ) self.parser.add_argument( @@ -257,7 +258,7 @@ def __init__(self): action="store_true", help=_( "shows only subscriptions matching products that are currently installed; " - "only used with --available" + "only used with --available (deprecated)" ), ) self.parser.add_argument( @@ -275,7 +276,7 @@ def __init__(self): action="store_true", help=_( "lists only the pool IDs for applicable available or consumed subscriptions; " - "only used with --available and --consumed" + "only used with --available and --consumed (deprecated)" ), ) self.parser.add_argument( @@ -283,7 +284,7 @@ def __init__(self): dest="after_date", help=_( "show pools that are active on or after the given date; " - "only used with --available (example: {example})" + "only used with --available (example: {example}) (deprecated)" ).format(example=strftime("%Y-%m-%d", localtime())), )