1 |
#!/bin/sh |
#!/bin/sh |
2 |
|
|
|
# Charlie Brady wrote on smeserver-developer: |
|
|
# [I'm sure I've said this before, but ...] there's no new anaconda SRPM. |
|
|
# The cdrom image I've been using comes directly from a CentOS one. |
|
|
|
|
|
# |
|
|
# What I've done is: |
|
|
# |
|
|
# - add CentOS/base/updates.img, made using mkcramfs from the updates directory |
|
|
# - delete unwanted RPMs |
|
|
# - add wanted RPMs |
|
|
# - replace comps.xml |
|
|
# - add install.cfg and update.cfg |
|
|
# - edit isolinux/isolinux.cfg |
|
|
# |
|
|
# Run this in the a 7.0alphaXX directory, containing cdrom.image |
|
|
# which contains the directory tree: |
|
|
|
|
|
|
|
|
echo "Checking packages not installed in CentOS workstation group" |
|
|
for package in anaconda anaconda-runtime bogl booty createrepo mkisofs zsync |
|
|
do |
|
|
rpm -q $package || exit "$package must be installed" |
|
|
done |
|
|
|
|
3 |
distname='SME Server' |
distname='SME Server' |
4 |
distvers=$(basename $(pwd)) |
distvers=$(basename $(readlink -f $(pwd))) |
5 |
|
distrel=${distvers:0:1} |
6 |
for img in product updates |
distarch=$(uname -i) |
7 |
do |
|
8 |
/usr/bin/mkcramfs \ |
exec < /dev/null |
9 |
$(pwd)/cdrom.image/$img \ |
exec &> build_installer.$distarch |
10 |
$(pwd)/cdrom.image/CentOS/base/$img.img |
|
11 |
done |
if ! [ -d $distarch ] |
12 |
|
then |
13 |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \ |
echo "No $distarch directory?" |
14 |
|
exit 1 |
15 |
|
fi |
16 |
|
|
17 |
|
rm -rf $(pwd)/$distarch/{images,isolinux} $(pwd)/$distarch/SME/base/{hdlist*,*.img} |
18 |
|
|
19 |
|
if [ "$distrel" == "7" ] |
20 |
|
then |
21 |
|
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \ |
22 |
|
--productpath SME \ |
23 |
--withnumbers \ |
--withnumbers \ |
24 |
$(pwd)/cdrom.image/ |
$(pwd)/$distarch/ |
25 |
|
|
26 |
|
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/pkgorder \ |
27 |
|
--product SME \ |
28 |
|
$(pwd)/$distarch \ |
29 |
|
$distarch > pkgorder.$distarch |
30 |
|
|
31 |
|
for PKG in /build/smeserver/repo/releases/$distrel/smeextras/$distarch/RPMS/*.rpm |
32 |
|
do |
33 |
|
PKGFILE=$(basename $PKG) |
34 |
|
if [ ! -f $(pwd)/$distarch/SME/RPMS/$PKGFILE ] |
35 |
|
then |
36 |
|
ln -sf $PKG $(pwd)/$distarch/SME/RPMS/ |
37 |
|
fi |
38 |
|
done |
39 |
|
|
40 |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/pkgorder \ |
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
41 |
$(pwd)/cdrom.image \ |
--product "$distname" \ |
42 |
i386 > pkgorder |
--version "${distvers/[^0-9.]*/}" \ |
|
|
|
|
# Link to necessary rpms to rebuild installer |
|
|
for rpm in anaconda-10.1.1.19-1.centos4.i386.rpm \ |
|
|
anaconda-help-10.1.0-1.centos4.noarch.rpm \ |
|
|
anaconda-runtime-10.1.1.19-1.centos4.i386.rpm \ |
|
|
atk-1.8.0-2.i386.rpm \ |
|
|
audiofile-0.2.6-1.i386.rpm \ |
|
|
bogl-0.1.18-4.i386.rpm \ |
|
|
bogl-bterm-0.1.18-4.i386.rpm \ |
|
|
booty-0.44-1.i386.rpm \ |
|
|
busybox-anaconda-1.00.rc1-5.i386.rpm \ |
|
|
comps-extras-10.1-1.noarch.rpm \ |
|
|
esound-0.2.35-2.i386.rpm \ |
|
|
fonts-arabic-1.5-3.noarch.rpm \ |
|
|
fonts-bengali-0.1-3.noarch.rpm \ |
|
|
fonts-xorg-base-6.8.1.1-1.EL.1.noarch.rpm \ |
|
|
gdk-pixbuf-0.22.0-16.el4.i386.rpm \ |
|
|
gnome-python2-2.6.0-3.i386.rpm \ |
|
|
gnome-python2-applet-2.6.0-3.i386.rpm \ |
|
|
gnome-python2-canvas-2.6.0-3.i386.rpm \ |
|
|
gnome-python2-nautilus-2.6.0-3.i386.rpm \ |
|
|
gtk2-2.4.13-14.i386.rpm \ |
|
|
joe-3.1-6.i386.rpm \ |
|
|
libart_lgpl-2.3.16-3.i386.rpm \ |
|
|
libgnomecanvas-2.8.0-1.i386.rpm \ |
|
|
memtest86+-1.26-2.i386.rpm \ |
|
|
open-1.4-21.i386.rpm \ |
|
|
pango-1.6.0-9.i386.rpm \ |
|
|
parted-1.6.19-1.EL.i386.rpm \ |
|
|
pygtk2-2.4.0-1.i386.rpm \ |
|
|
pyparted-1.6.8-2.i386.rpm \ |
|
|
redhat-artwork-0.120-1.1E.centos4.1.i386.rpm \ |
|
|
redhat-logos-1.1.25-1.centos4.3.noarch.rpm \ |
|
|
rsh-0.17-25.3.i386.rpm \ |
|
|
system-config-date-1.7.15-0.RHEL4.1.noarch.rpm \ |
|
|
ttfonts-bn-1.8-1.noarch.rpm \ |
|
|
ttfonts-gu-1.8-1.noarch.rpm \ |
|
|
ttfonts-hi-1.8-1.noarch.rpm \ |
|
|
ttfonts-ja-1.2-36.EL4.0.noarch.rpm \ |
|
|
ttfonts-ko-1.0.11-32.2.noarch.rpm \ |
|
|
ttfonts-pa-1.8-1.noarch.rpm \ |
|
|
ttfonts-ta-1.8-1.noarch.rpm \ |
|
|
ttfonts-zh_CN-2.14-6.noarch.rpm \ |
|
|
ttfonts-zh_TW-2.11-28.noarch.rpm \ |
|
|
urw-fonts-2.2-6.noarch.rpm \ |
|
|
vnc-server-4.0-8.1.i386.rpm \ |
|
|
xorg-x11-6.8.2-1.EL.13.6.i386.rpm; do |
|
|
ln -fs /mirrors/centos/4.1/os/i386/CentOS/RPMS/$rpm $(pwd)/cdrom.image/CentOS/RPMS/ |
|
|
done |
|
|
|
|
|
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
|
|
--comp dist-4.1 \ |
|
|
--pkgorder pkgorder \ |
|
43 |
--release "$distname" \ |
--release "$distname" \ |
44 |
|
--prodpath SME \ |
45 |
|
--pkgorder pkgorder.$distarch \ |
46 |
|
$(pwd)/$distarch/ |
47 |
|
|
48 |
|
sed -i 's@1,2,3@1@' $(pwd)/$distarch/.discinfo |
49 |
|
elif [ "$distrel" == "8" ] |
50 |
|
then |
51 |
|
for PKG in /build/smeserver/repo/releases/testing/$distrel/smeextras/$distarch/RPMS/*.rpm |
52 |
|
do |
53 |
|
PKGFILE=$(basename $PKG) |
54 |
|
if [ ! -f $(pwd)/$distarch/SME/$PKGFILE ] |
55 |
|
then |
56 |
|
ln -sf $PKG $(pwd)/$distarch/SME/ |
57 |
|
fi |
58 |
|
done |
59 |
|
|
60 |
|
cp /usr/lib/anaconda-runtime/mk-images* . |
61 |
|
sed -i -e 's/count=12/count=15/' mk-images.* |
62 |
|
sed -e "/installforallkernels/ised -i 's|\\\\(enabled\\\\) = 1|\\\\1 = 0|' \$DEST/etc/yum/pluginconf.d/kmod.conf" \ |
63 |
|
-e 's|^usr/\(.*/libz.*\)|&\n\1|' /usr/lib/anaconda-runtime/upd-instroot > upd-instroot |
64 |
|
chmod 644 mk-images.* |
65 |
|
chmod 755 mk-images upd-instroot |
66 |
|
sudo chown root:root mk-images* upd-instroot |
67 |
|
|
68 |
|
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
69 |
--product "$distname" \ |
--product "$distname" \ |
70 |
--version 7.0 \ |
--version "${distvers/[^0-9.]*/}" \ |
71 |
$(pwd)/cdrom.image/ |
--release "$distname" \ |
72 |
|
--prodpath SME \ |
73 |
|
--bugurl http://bugs.contribs.org/ \ |
74 |
|
$(pwd)/$distarch/ |
75 |
|
sed -i 's/ALL/1/' $distarch/.discinfo |
76 |
|
|
77 |
|
sudo rm -rf $distarch/buildinstall.tree.*/ mk-images* upd-instroot |
78 |
|
elif [ "$distrel" == "9" ] |
79 |
|
then |
80 |
|
sed -e '/anaconda.repos.d/arm -f $DEST/etc/anaconda.repos.d/*' /usr/lib/anaconda-runtime/upd-instroot > upd-instroot |
81 |
|
chmod 755 upd-instroot |
82 |
|
sudo chown root:root upd-instroot |
83 |
|
|
84 |
|
rm -rf $(pwd)/$distarch/{repodata,repoview}/ |
85 |
|
mkdir -p $(pwd)/$distarch/repodata/ |
86 |
|
/bin/cp -af $(pwd)/$distarch/Packages/base/comps.xml $(pwd)/$distarch/repodata/ |
87 |
|
|
88 |
|
createrepo --quiet --database --skip-symlinks --simple-md-filenames --groupfile repodata/comps.xml $(pwd)/$distarch/ |
89 |
|
sync; rm -rf $(pwd)/$distarch/.olddata |
90 |
|
|
91 |
|
# add --final when we have final product |
92 |
|
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
93 |
|
--product "$distname" \ |
94 |
|
--version "${distvers/[^0-9.]*/}" \ |
95 |
|
--release "$distname" \ |
96 |
|
--brand "centos" \ |
97 |
|
--bugurl http://bugs.contribs.org/ \ |
98 |
|
--output $(pwd)/$distarch/ \ |
99 |
|
/build/smeserver/repo/testing/$distrel/smeextras/$distarch/ \ |
100 |
|
$(pwd)/$distarch/ |
101 |
|
/bin/sed -i -e "s|packagedir =.*|packagedir = Packages|" $(pwd)/$distarch/.treeinfo |
102 |
|
|
103 |
|
sudo rm -f awk ../pci.ids *-logos-*.rpm grub-*.rpm upd-instroot |
104 |
|
fi |
105 |
|
|
106 |
# Remove previous linked files |
# Remove previous linked files |
107 |
find $(pwd)/cdrom.image/CentOS/RPMS/ -type l | xargs rm -f |
find $(pwd)/$distarch/SME/ -type l | xargs rm -f |
108 |
|
|
109 |
# Copy updated isolinux files |
# Copy updated isolinux files |
110 |
sudo cp -fR /builds/isolinux/* $(pwd)/cdrom.image/isolinux/ |
sudo cp -f /build/smeserver/stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
111 |
|
|
112 |
cd cdrom.image |
find $(pwd)/$distarch -\( -not -user 10020 -o -not -group 10020 -\) -print0 | sudo xargs -r0 chown 10020:10020 |
113 |
|
find $(pwd)/$distarch -\( -type f -not -perm -0664 -o -type d -not -perm -0775 -\) -print0 | sudo xargs -r0 chmod u+rwX,g+rwX,o+rX,o-w |
114 |
|
|
115 |
/builds/bin/build_IS0 |
echo "You now need to run /build/smeserver/stage/bin/build_ISO as non-root" |
116 |
|
|
117 |
# That's it. |
# That's it. |