Comment 1 for bug 772716

Revision history for this message
Stonedge (redshadow69) wrote :

Adding VMSYSTEM (VARCHAR(255)) to the table Hardware and

modifying Hardware.pm to include the new field.
Changing:
line 64
[code]
UUID=".$dbh->quote($base->{UUID})."
[/code]
to:
[code]
        UUID=".$dbh->quote($base->{UUID}).",
        VMSYSTEM=".$dbh->quote($base->{VMSYSTEM})."
[/code]

Solve the Issue.... but these infos are saved in the db but not show in the web interface.

Stonedge