qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 2/5] guest tools: installer harness


From: Michael Roth
Subject: [Qemu-devel] [PATCH 2/5] guest tools: installer harness
Date: Mon, 22 Aug 2011 12:09:17 -0500

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 <address@hidden>
---
 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]