Ian Southam 680454dfdf Some bug fixes
Some more tests
store vmpassword functionally working
Tests for store password
2015-03-16 11:35:18 +01:00

10 lines
175 B
Python

from pprint import pprint
from netaddr import *
def merge(dbag, data):
"""
Track vm passwords
"""
dbag[data['ip_address']] = data['password']
return dbag