~tbielawa/vmbuilder/macdefining

« back to all changes in this revision

Viewing changes to VMBuilder/vm.py

  • Committer: tim bielawa
  • Date: 2008-10-31 06:50:33 UTC
  • Revision ID: tbielawa@fridge-20081031065033-9foaxbjzx9m9euro
Adding options to specify a mac address at build time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
 
138
138
        group = self.setting_group('Network related options')
139
139
        domainname = '.'.join(socket.gethostbyname_ex(socket.gethostname())[0].split('.')[1:])
140
 
        group.add_option('--domain', metavar='DOMAIN', default=domainname, help='Set DOMAIN as the domain name of the guest. Default: The domain of the machine running this script: %default.')
141
 
        group.add_option('--ip', metavar='ADDRESS', default='dhcp', help='IP address in dotted form [default: %default]')
 
140
        group.add_option('--domain', metavar='DOMAIN', default=domainname, help='Set DOMAIN as the domain name of the guest [default: The domain of the machine running this script: %default].')
 
141
        group.add_option('--ip', metavar='ADDRESS', default='dhcp', help='IP address in dotted form [default: %default].')
 
142
        group.add_option('--mac', metavar='VALUE', help='MAC address of the guest [default: one will be automatically generated on first run].')
142
143
        group.add_option('--mask', metavar='VALUE', help='IP mask in dotted form [default: based on ip setting]. Ignored if --ip is not specified.')
143
144
        group.add_option('--net', metavar='ADDRESS', help='IP net address in dotted form [default: based on ip setting]. Ignored if --ip is not specified.')
144
145
        group.add_option('--bcast', metavar='VALUE', help='IP broadcast in dotted form [default: based on ip setting]. Ignored if --ip is not specified.')