This is what the users run in the guest to install the guest tools. Since initially only the guest agent will be installed in the manner, the logic is to simply iterate through each projects, execute the install script, then do the next. It's up the the project-specific install scripts to decide whether to upgrade/error/etc. In the future this may change to support more intelligent dependency checking and allow for interactive installs.
Only linux is supported initially, windows and other platforms will follow as needed. Signed-off-by: Michael Roth <[email protected]> --- guest-tools-iso/install.linux | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) create mode 100755 guest-tools-iso/install.linux diff --git a/guest-tools-iso/install.linux b/guest-tools-iso/install.linux new file mode 100755 index 0000000..2291444 --- /dev/null +++ b/guest-tools-iso/install.linux @@ -0,0 +1,7 @@ +#!/bin/sh + +for project in projects/*; do + cd $project + sudo ./install.linux + cd - +done -- 1.7.0.4
