Ignore:
Timestamp:
Oct 28, 2007, 4:19:52 AM (17 years ago)
Author:
price
Message:

new remctl command "install" to invoke autoinstaller

e.g.,

$ remctl black-mesa control moobarspam install etch /path/to/rootpasshash

The root password to be used is taken from a given file local to black-mesa...
probably this should be in the database or something, randomly generated
by the web interface, and available for reminders.

File:
1 edited

Legend:

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

    r146 r223  
    33from sipb_xen_database import connect
    44import re
     5import tempfile
     6from subprocess import call
    57
    68connect('postgres://sipb-xen@sipb-xen-dev.mit.edu/sipb_xen')
     
    6466    disk.append(dspec)
    6567
    66 if 'cdrom_image' in locals():
     68if 'installer' in locals():
     69    check(re.match('^[A-Za-z0-9][A-Za-z0-9_.-]*$', installer))
     70    tmptree = tempfile.mkdtemp('', 'auto-install.', '/tmp')
     71    call(['/usr/sbin/sipb-xen-make-iso', installer, tmptree]
     72         + installer_options.split(' '))
     73    disk.append('file:'+tmptree+'/install.iso,hdc:cdrom,r')
     74    boot = 'd'
     75   
     76elif 'cdrom_image' in locals():
    6777    check(re.match('^[A-Za-z0-9][A-Za-z0-9_.-]*$', cdrom_image))
    6878    disk.append('file:/srv/images/' + cdrom_image + '.iso,hdc:cdrom,r')
Note: See TracChangeset for help on using the changeset viewer.