83557ab66cbd9d3905ce8e6ae33ebcb27f6692d3
[virt-p2v.git] / p2v.ks.in
1 # LiveCD kickstart file for virt-p2v
2 # @configure_input@
3 #
4 # Copyright (C) 2007-2008 Red Hat Inc.
5 # Written by Richard W.M. Jones <rjones@redhat.com>
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
21 lang @CD_LANG@
22 keyboard @CD_KEYBOARD@
23 timezone @CD_TIMEZONE@
24 auth --useshadow --enablemd5
25 selinux --enforcing
26 firewall --disabled
27
28 repo --name=released --baseurl=@CD_BASE_URL@
29 #repo --name=released --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-@CD_BASE@&arch=@CD_ARCH@
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-ng
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 grep
57 sed
58 gawk
59 findutils
60
61 # For IP configuration
62 iproute
63 net-tools
64
65 # For OCaml
66 ocaml
67 ocaml-runtime
68 ocaml-pcre
69 ocaml-extlib
70 ocaml-xml-light
71 ocaml-libvirt
72 ocaml-newt
73
74 # For network configuration
75 dhclient
76
77 # Some other generally useful packages
78 which
79 perl
80 rpm
81 lsof
82 strace
83 vim-minimal
84 vim-enhanced
85 bind-utils
86 file
87
88
89 %post --nochroot
90
91 # These files have to be copied from the build directory into the
92 # squashfs.  See also:
93 # http://www.mail-archive.com/fedora-livecd-list@redhat.com/msg01470.html
94
95 # Just check everything exists, because kickstart will not give
96 # an error if files or paths are missing.
97 if test "x$INSTALL_ROOT" = "x"; then ERROR=1; fi
98 if ! test -d "$INSTALL_ROOT/usr/bin"; then ERROR=1; fi
99 if ! test -d "@abs_top_srcdir@"; then ERROR=1; fi
100 if ! test -d "@abs_top_srcdir@/extras"; then ERROR=1; fi
101 if ! test -f "@abs_top_srcdir@/virt-p2v"; then ERROR=1; fi
102
103 if test "x$ERROR" = "x1"; then
104     echo "**************************************************"
105     echo "**************************************************"
106     echo "**************************************************"
107     echo "Missing files or directories found.  This ISO will be bad."
108     echo "**************************************************"
109     echo "**************************************************"
110     echo "**************************************************"
111     # Exit 1 won't stop anything, but it makes me feel better.
112     exit 1
113 fi
114
115 install -m 0755 -o root -g root \
116         @abs_top_srcdir@/virt-p2v \
117         @abs_top_srcdir@/virt-p2v-update-wrapper \
118         @abs_top_srcdir@/iso-attach \
119         $INSTALL_ROOT/usr/bin
120
121 install -m 0644 -o root -g root @abs_top_srcdir@/inittab \
122         $INSTALL_ROOT/etc
123
124 cp -a $INSTALL_ROOT/etc/lvm $INSTALL_ROOT/etc/lvm.new
125 install -m 0644 -o root -g root @abs_top_srcdir@/lvm.conf \
126         $INSTALL_ROOT/etc/lvm.new
127
128 # Copy everything under extras to the squashfs /extras.
129 cp -a @abs_top_srcdir@/extras $INSTALL_ROOT/extras
130
131 %end
132
133 %post
134
135 # Restore SELinux permissions on installed binaries.
136 /sbin/restorecon /usr/bin/virt-p2v
137 /sbin/restorecon /usr/bin/virt-p2v-update-wrapper
138 /sbin/restorecon /usr/bin/iso-attach
139
140 # Turn off firstboot for livecd boots.
141 echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
142
143 # Don't start yum-updatesd for livecd boots.
144 /sbin/chkconfig --level 345 yum-updatesd off
145
146 # Don't start cron/at as they tend to spawn things which are
147 # disk intensive that are painful on a live image.
148 /sbin/chkconfig --level 345 crond off
149 /sbin/chkconfig --level 345 atd off
150 /sbin/chkconfig --level 345 anacron off
151 /sbin/chkconfig --level 345 readahead_early off
152 /sbin/chkconfig --level 345 readahead_later off
153
154 # Stopgap fix for RH #217966; should be fixed in HAL instead
155 touch /media/.hal-mtab
156
157 # Make some mountpoints.
158 mkdir /mnt/root
159
160 %end