Ian Southam b45c71ee31 Acl code linked in
Dhcp code
Test file for dhcp entry
2015-03-16 11:35:22 +01:00

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