Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


change default guest name in guest config script
Kyle Hale [Tue, 22 Jul 2014 18:30:54 +0000 (13:30 -0500)]
since there is a directory in the palacios tree named 'guest',
v3_config_guest shouldn't use this as the default guest directory

v3_config_guest.pl

index 04180a6..79a98ed 100755 (executable)
@@ -60,7 +60,7 @@ if ($otherbios) {
 }
 
 
-$name = "guest";
+$name = "myguest";
 print "What is the name of your guest? [$name] : ";
 $name = get_user($name);