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-remctl-auto/sipb-xen-remctl-auto/files/usr/sbin/sipb-xen-vmcontrol

    r212 r223  
    1818        xm "$ACTION" "$MACHINE"
    1919        ;;
    20     create|reboot)
     20    install|create|reboot)
     21        ARG="$3"
     22        shift; shift; shift; MOREARGS="$*"
    2123        if [ "$ACTION" = "reboot" ]; then
    2224            xm destroy "$MACHINE" 2>/dev/null
    2325        else
    2426            xm list "$MACHINE" >/dev/null 2>/dev/null && echo "$MACHINE already exists" && exit 1
    25         fi     
    26         if [ -n "$3" ]; then
    27             xm create sipb-database machine_name="$ORIGMACHINE" cdrom_image="$3"
     27        fi
     28        if [ "$ACTION" = "install" ]; then
     29            xm create sipb-database machine_name="$ORIGMACHINE" installer="$ARG" installer_options="$MOREARGS"
     30        elif [ -n "$3" ]; then
     31            xm create sipb-database machine_name="$ORIGMACHINE" cdrom_image="$ARG"
    2832        else
    2933            xm create sipb-database machine_name="$ORIGMACHINE"
Note: See TracChangeset for help on using the changeset viewer.