mirror of https://github.com/BOINC/boinc.git
VBOX: Add a flag for GBAC functionality.
This commit is contained in:
parent
b739badb44
commit
2f79a92b5c
|
@ -99,6 +99,7 @@ VBOX_BASE::VBOX_BASE() {
|
|||
enable_cache_disk = false;
|
||||
enable_isocontextualization = false;
|
||||
enable_remotedesktop = false;
|
||||
enable_gbac = false;
|
||||
register_only = false;
|
||||
enable_network = false;
|
||||
network_bridged_mode = false;
|
||||
|
|
|
@ -165,6 +165,8 @@ public:
|
|||
// whether to use floppy io infrastructure
|
||||
bool enable_remotedesktop;
|
||||
// whether to enable remote desktop functionality
|
||||
bool enable_gbac;
|
||||
// whether to enable GBAC functionality
|
||||
double job_duration;
|
||||
// maximum amount of wall-clock time this VM is allowed to run before
|
||||
// considering itself done.
|
||||
|
|
|
@ -226,6 +226,7 @@ int parse_job_file(VBOX_VM& vm) {
|
|||
else if (xp.parse_bool("enable_cache_disk", vm.enable_cache_disk)) continue;
|
||||
else if (xp.parse_bool("enable_isocontextualization", vm.enable_isocontextualization)) continue;
|
||||
else if (xp.parse_bool("enable_remotedesktop", vm.enable_remotedesktop)) continue;
|
||||
else if (xp.parse_bool("enable_gbac", vm.enable_gbac)) continue;
|
||||
else if (xp.parse_int("pf_guest_port", vm.pf_guest_port)) continue;
|
||||
else if (xp.parse_int("pf_host_port", vm.pf_host_port)) continue;
|
||||
else if (xp.parse_string("copy_to_shared", str)) {
|
||||
|
|
Loading…
Reference in New Issue