Changeset 842


Ignore:
Timestamp:
Aug 3, 2008, 1:19:41 AM (16 years ago)
Author:
price
Message:

finish configuration of sipb-xen-database; add network config to master.yaml

Location:
trunk/packages
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/sipb-xen-database/client/etc/xen/sipb-database

    r829 r842  
    11# -*- mode: python; -*-
    22from invirt.database import models, connect
     3from invirt.config import structs as config
    34import re
    45import tempfile
     
    5556    n = machine.nics[0]
    5657    extra = 'ro noresume'
    57     extra += ' ip=%s::18.181.0.1:255.255.0.0:%s:eth0:off' % (n.ip, machine.name)
     58    extra += (' ip=%s::%s:%s:%s:eth0:off'
     59         % (n.ip, config.network.gateway, config.network.netmask, machine.name))
    5860    extra += ' mirror=%s dist=%s' % (mirror, dist)
    5961    extra += ' imagesize=%s' % imagesize
  • trunk/packages/sipb-xen-database/debian/changelog

    r836 r842  
     1sipb-xen-database (10.17) unstable; urgency=low
     2
     3  * pull IP gateway, network from config
     4  * configurabilization complete!
     5
     6 -- Greg Price <price@mit.edu>  Sun,  3 Aug 2008 01:16:53 -0400
     7
    18sipb-xen-database (10.16) unstable; urgency=low
    29
  • trunk/packages/xvm-devconfig/debian/changelog

    r822 r842  
    33  * remove deprecated /etc/invirt/{hosts,realm}
    44  * add apt section with keyid
     5  * add network section with gateway, netmask
    56
    6  -- Greg Price <price@mit.edu>  Sat,  2 Aug 2008 21:56:26 -0400
     7 -- Greg Price <price@mit.edu>  Sun,  3 Aug 2008 01:17:57 -0400
    78
    89xvm-devconfig (0.4) unstable; urgency=low
  • trunk/packages/xvm-devconfig/files/etc/invirt/master.yaml

    r822 r842  
    3636 rootip: 18.181.0.62
    3737
     38network:
     39 gateway: 18.181.0.1
     40 netmask: 255.255.0.0
     41
    3842web:
    3943 baseuri: https://xvm.mit.edu/
Note: See TracChangeset for help on using the changeset viewer.