Remove hack to load newt from my local development area.
[virt-p2v.git] / p2v.ks.in
index 4415690..83557ab 100644 (file)
--- a/p2v.ks.in
+++ b/p2v.ks.in
@@ -53,12 +53,15 @@ openssh-clients
 nc
 
 # For the shell script
-dialog
 grep
 sed
 gawk
 findutils
 
+# For IP configuration
+iproute
+net-tools
+
 # For OCaml
 ocaml
 ocaml-runtime
@@ -66,6 +69,7 @@ ocaml-pcre
 ocaml-extlib
 ocaml-xml-light
 ocaml-libvirt
+ocaml-newt
 
 # For network configuration
 dhclient
@@ -93,6 +97,7 @@ file
 if test "x$INSTALL_ROOT" = "x"; then ERROR=1; fi
 if ! test -d "$INSTALL_ROOT/usr/bin"; then ERROR=1; fi
 if ! test -d "@abs_top_srcdir@"; then ERROR=1; fi
+if ! test -d "@abs_top_srcdir@/extras"; then ERROR=1; fi
 if ! test -f "@abs_top_srcdir@/virt-p2v"; then ERROR=1; fi
 
 if test "x$ERROR" = "x1"; then
@@ -120,6 +125,9 @@ cp -a $INSTALL_ROOT/etc/lvm $INSTALL_ROOT/etc/lvm.new
 install -m 0644 -o root -g root @abs_top_srcdir@/lvm.conf \
        $INSTALL_ROOT/etc/lvm.new
 
+# Copy everything under extras to the squashfs /extras.
+cp -a @abs_top_srcdir@/extras $INSTALL_ROOT/extras
+
 %end
 
 %post