Changeset 11555 in genesis
- Timestamp:
- Oct 15, 2012, 7:37:47 PM (12 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
nodes/HybridGraficall/wleiden.yaml
r11554 r11555 57 57 sdesc : "2hmkerk" 58 58 type : "eth" 59 status : "planned" 59 60 60 61 -
tools/gformat.py
r11541 r11555 1828 1828 datadump[iface_key] = datadump[iface_key]['desc'] 1829 1829 1830 # Mandatory interface keys 1831 if not datadump[iface_key].has_key('status'): 1832 datadump[iface_key]['status'] = 'planned' 1833 1830 1834 x = datadump[iface_key]['comment'] 1831 1835 datadump[iface_key]['comment'] = x[0].upper() + x[1:] -
tools/yaml2nag.py
r11262 r11555 7 7 8 8 import gformat 9 import logging 10 11 logging.basicConfig(level=logging.DEBUG) 12 logger = logging.getLogger() 9 13 10 14 def is_ap(ifacedump): … … 36 40 # Process all hosts 37 41 for host in gformat.get_hostlist(): 42 logger.debug("Processing host %s", host) 38 43 datadump = gformat.get_yaml(host) 39 44
Note:
See TracChangeset
for help on using the changeset viewer.