Skip to content

Commit f840013

Browse files
authored
[cfggen] Allow Write To Redis DB With Template/Batch Mode (#5203)
Argument to write to config-db is not allowed when using template. This PR allows cfggen to write to redis db when using template mode. signed-off-by: Tamer Ahmed <tamer.ahmed@microsoft.com>
1 parent 52b3494 commit f840013

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sonic-config-engine/sonic-cfggen

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,10 @@ def main():
266266
parser.add_argument("-T", "--template_dir", help="search base for the template files", action='store')
267267
group.add_argument("-v", "--var", help="print the value of a variable, support jinja2 expression")
268268
group.add_argument("--var-json", help="print the value of a variable, in json format")
269-
group.add_argument("-w", "--write-to-db", help="write config into configdb", action='store_true')
270269
group.add_argument("--preset", help="generate sample configuration from a preset template", choices=get_available_config())
271270
group = parser.add_mutually_exclusive_group()
272271
group.add_argument("--print-data", help="print all data", action='store_true')
272+
group.add_argument("-w", "--write-to-db", help="write config into configdb", action='store_true')
273273
group.add_argument("-K", "--key", help="Lookup for a specific key")
274274
args = parser.parse_args()
275275

0 commit comments

Comments
 (0)