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