Skip to content
Snippets Groups Projects
Commit 2f79a92b authored by Rom Walton's avatar Rom Walton Committed by Rom Walton
Browse files

VBOX: Add a flag for GBAC functionality.

parent b739badb
No related branches found
No related tags found
No related merge requests found
......@@ -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)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment