Skip to content

Instantly share code, notes, and snippets.

@danmcd

danmcd/foo.json Secret

Created March 21, 2018 22:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danmcd/7d1ae639d7877e760a47ad83489a342f to your computer and use it in GitHub Desktop.
Save danmcd/7d1ae639d7877e760a47ad83489a342f to your computer and use it in GitHub Desktop.
ORIGINAL:
2018-03-21 21:57:28,685 - stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'mtu': 1500, 'type': 'physical', 'name': 'net0', 'mac_address': '90:b8:d0:2a:71:1d', 'subnets': [{'type': 'static', 'address': '172.26.2.227/24', 'gateway': '172.26.2.1'}]}, {'gateway': '172.26.2.1', 'metric': '0', 'type': 'route', 'destination': '172.25.3.0/24'}, {'type': 'nameserver', 'address': ['8.8.8.8', '8.8.4.4'], 'search': []}]}
TEASED OUT:
2018-03-21 21:57:28,685 - stages.py[DEBUG]: applying net config names for
{
'version': 1,
'config': [
{
'mtu': 1500,
'type': 'physical',
'name': 'net0',
'mac_address': '90:b8:d0:2a:71:1d',
'subnets': [
{
'type': 'static',
'address': '172.26.2.227/24',
'gateway': '172.26.2.1'
}
]
},
{
'gateway': '172.26.2.1',
'metric': '0',
'type': 'route',
'destination': '172.25.3.0/24'
},
{
'type': 'nameserver',
'address': ['8.8.8.8', '8.8.4.4'],
'search': []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment