Allow the user to specify an arbitrary root container.

This commit is contained in:
Justin Maggard
2014-04-29 16:12:42 -07:00
parent 820b5857a5
commit 8e05f9b6f7
2 changed files with 3 additions and 1 deletions

View File

@ -690,7 +690,8 @@ init(int argc, char **argv)
runtime_vars.root_container = IMAGE_ID;
break;
default:
DPRINTF(E_ERROR, L_GENERAL, "Invalid root container! [%s]\n",
runtime_vars.root_container = ary_options[i].value;
DPRINTF(E_WARN, L_GENERAL, "Using arbitrary root container [%s]\n",
ary_options[i].value);
break;
}