rescue: Rewrite virt-rescue in C.
[libguestfs.git] / rescue / run-rescue-locally
index 18097cf..95f3cc4 100755 (executable)
@@ -1,5 +1,4 @@
 #!/usr/bin/perl
-# virt-rescue
 # Copyright (C) 2009 Red Hat Inc.
 #
 # This program is free software; you can redistribute it and/or modify
@@ -16,9 +15,9 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-# This script sets up the environment so you can run virt-rescue in
+# This script sets up the environment so you can run virt-* tools in
 # place without needing to do 'make install' first. You can also run
-# virt-rescue by creating a symlink to this script and putting it in
+# the tools by creating a symlink to this script and putting it in
 # your path.
 #
 # Use it like this:
@@ -48,6 +47,6 @@ $path = abs_path(dirname($path).'/..');
 
 $ENV{LD_LIBRARY_PATH} = $path.'/src/.libs';
 $ENV{LIBGUESTFS_PATH} = $path.'/appliance';
-$ENV{PERL5LIB}        = $path.'/perl/blib/lib:'.$path.'/perl/blib/arch';
 
-exec('perl', $path.'/rescue/virt-rescue', @ARGV);
+#print (join " ", ("$path/rescue/virt-rescue", @ARGV), "\n");
+exec("$path/rescue/virt-rescue", @ARGV);