mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
11 lines
286 B
Python
11 lines
286 B
Python
from pprint import pprint
|
|
|
|
|
|
def merge(dbag, cmdline):
|
|
if 'redundant_router' in cmdline['cmd_line']:
|
|
cmdline['cmd_line']['redundant_router'] = "true"
|
|
else:
|
|
cmdline['cmd_line']['redundant_router'] = "false"
|
|
dbag['config'] = cmdline['cmd_line']
|
|
return dbag
|