source: people/peter.buschman/backup_monitoring/parsing/routines/_routines.py

Last change on this file was 976, checked in by peter, on Dec 6, 2011 at 10:19:33 AM

Raw checkin of current NetBackup / TSM parsing code.

File size: 315 bytes
RevLine 
[976]1
2import re
3
4re_fqdn = re.compile('^([a-zA-Z0-9\-_]+).([a-zA-Z0-9\-_.]+)$')
5
6##
7## strip_domain() - strip the domain from a fully-qualified hostname
8##
9def strip_domain(hostname):
10
11 match = re_fqdn.match(hostname)
12
13 if match:
14 return match.group(1)
15 else:
16 return hostname
17
18
Note: See TracBrowser for help on using the repository browser.