mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
10 lines
175 B
Python
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
|