From e9901bb35ed2b86cb8f225a8d6fafd31220aac4e Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Mon, 31 Jan 2022 09:50:33 -0800 Subject: [PATCH] create_bridge: Move noclean to lfclibase Signed-off-by: Matthew Stidham --- py-scripts/create_bridge.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/py-scripts/create_bridge.py b/py-scripts/create_bridge.py index 50951146..16c084de 100755 --- a/py-scripts/create_bridge.py +++ b/py-scripts/create_bridge.py @@ -108,14 +108,10 @@ Command example: --debug ''') required = parser.add_argument_group('required arguments') - optional = parser.add_argument_group('optional arguments') required.add_argument('--bridge_name', help='Name of the bridge to create', required=True) required.add_argument('--target_device', help='The interfaces the bridge should contain', required=True) - optional.add_argument('--noclean', help='Do not remove the bridge device before exit', - action='store_true') - optional = parser.add_argument_group('optional arguments') args = parser.parse_args() # if args.debug: # pprint.pprint(args)