Rewrite /etc/fstab and transport image to remote end.
[virt-p2v.git] / livecd.ks.in
1 # LiveCD kickstart file for virt-p2v
2 #
3 # Copyright (C) 2007 Red Hat Inc.
4 # Written by Richard W.M. Jones <rjones@redhat.com>
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 #
20 # $Id$
21
22 lang @LANG@
23 keyboard @KEYBOARD@
24 timezone @TIMEZONE@
25 auth --useshadow --enablemd5
26 selinux --enforcing
27 firewall --disabled
28
29 repo --name=a-dev --baseurl=@BASEREPO@
30
31 %packages
32 bash
33 kernel
34 syslinux
35 passwd
36 policycoreutils
37 chkconfig
38 authconfig
39 rootfiles
40
41 # dd, sleep, sync, etc.
42 coreutils
43
44 # For device mapping
45 device-mapper
46 util-linux
47 module-init-tools
48 gzip
49 kpartx
50
51 # For remote communications
52 openssh-clients
53 nc
54
55 # For the shell script
56 dialog
57 grep
58 sed
59 gawk
60 findutils
61
62 # For network configuration
63 dhclient
64
65 # Some other generally useful packages
66 which
67 perl
68 rpm
69 lsof
70 strace
71 vim-minimal
72 vim-enhanced
73 bind-utils
74 file
75
76
77
78 # The contents of livecd-post.sh are appended to the file after %post.
79 %post