1 |
#!/bin/sh |
#!/bin/sh |
2 |
|
|
|
[ -d cdrom.image ] || (echo "No cdrom.image directory?"; exit 1) |
|
|
|
|
3 |
distname='SME Server' |
distname='SME Server' |
4 |
distrel=7 |
distvers=$(basename $(readlink -f $(pwd))) |
5 |
distvers=$(basename $(pwd)) |
distrel=${distvers:0:1} |
6 |
distarch=$(uname -i) |
distarch=$(uname -i) |
7 |
|
|
8 |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \ |
exec < /dev/null |
9 |
|
exec &> build_installer.$distarch |
10 |
|
|
11 |
|
if ! [ -d $distarch ] |
12 |
|
then |
13 |
|
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 \ |
--productpath SME \ |
23 |
--withnumbers \ |
--withnumbers \ |
24 |
$(pwd)/cdrom.image/ |
$(pwd)/$distarch/ |
25 |
|
|
26 |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/pkgorder \ |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/pkgorder \ |
27 |
--product SME \ |
--product SME \ |
28 |
$(pwd)/cdrom.image \ |
$(pwd)/$distarch \ |
29 |
$distarch > pkgorder |
$distarch > pkgorder.$distarch |
30 |
|
|
31 |
for PKG in /releases/$distrel/smeextras/$distarch/RPMS/*.rpm |
for PKG in /releases/$distrel/smeextras/$distarch/RPMS/*.rpm |
32 |
do |
do |
33 |
PKGFILE=$(basename $PKG) |
PKGFILE=$(basename $PKG) |
34 |
if [ ! -f $(pwd)/cdrom.image/SME/$PKGFILE ] |
if [ ! -f $(pwd)/$distarch/SME/RPMS/$PKGFILE ] |
35 |
then |
then |
36 |
ln -sf $PKG $(pwd)/cdrom.image/SME/RPMS/ |
ln -sf $PKG $(pwd)/$distarch/SME/RPMS/ |
37 |
fi |
fi |
38 |
done |
done |
39 |
|
|
40 |
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
41 |
--product "$distname" \ |
--product "$distname" \ |
42 |
--version "$distrel.0" \ |
--version "${distvers/[^0-9.]*/}" \ |
43 |
--release "$distname" \ |
--release "$distname" \ |
44 |
--prodpath SME \ |
--prodpath SME \ |
45 |
--pkgorder pkgorder \ |
--pkgorder pkgorder.$distarch \ |
46 |
$(pwd)/cdrom.image/ |
$(pwd)/$distarch/ |
47 |
|
|
48 |
|
sed -i 's@1,2,3@1@' $(pwd)/$distarch/.discinfo |
49 |
|
else |
50 |
|
for PKG in /releases/testing/$distrel/smeextras/$distarch/RPMS/*.rpm |
51 |
|
do |
52 |
|
PKGFILE=$(basename $PKG) |
53 |
|
if [ ! -f $(pwd)/$distarch/SME/$PKGFILE ] |
54 |
|
then |
55 |
|
ln -sf $PKG $(pwd)/$distarch/SME/ |
56 |
|
fi |
57 |
|
done |
58 |
|
|
59 |
|
sed "/installforallkernels/ised -i 's|\\\\(enabled\\\\) = 1|\\\\1 = 0|' \$DEST/etc/yum/pluginconf.d/kmod.conf" \ |
60 |
|
/usr/lib/anaconda-runtime/upd-instroot > upd-instroot |
61 |
|
chmod 755 upd-instroot |
62 |
|
sudo chown root:root upd-instroot |
63 |
|
|
64 |
|
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
65 |
|
--product "$distname" \ |
66 |
|
--version "${distvers/[^0-9.]*/}" \ |
67 |
|
--release "$distname" \ |
68 |
|
--prodpath SME \ |
69 |
|
--bugurl http://bugs.contribs.org/ \ |
70 |
|
$(pwd)/$distarch/ |
71 |
|
|
72 |
|
rm -rf $distarch/buildinstall.tree.*/ |
73 |
|
sudo rm upd-instroot |
74 |
|
fi |
75 |
|
|
76 |
# Remove previous linked files |
# Remove previous linked files |
77 |
find $(pwd)/cdrom.image/SME/RPMS/ -type l | xargs rm -f |
find $(pwd)/$distarch/SME/ -type l | xargs rm -f |
78 |
|
|
79 |
# Copy updated isolinux files |
# Copy updated isolinux files |
80 |
sudo cp -f /builds/isolinux/* $(pwd)/cdrom.image/isolinux/ |
sudo cp -f /stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
|
|
|
|
sed -i 's@1,2,3@1@' $(pwd)/cdrom.image/.discinfo |
|
81 |
|
|
82 |
sudo chown -R buildcvs:developers $(pwd)/cdrom.image/ |
find $(pwd)/$distarch -\( -not -user 9000 -o -not -group 9000 -\) -print0 | sudo xargs -r0 chown 9000:9000 |
83 |
sudo chmod -R g+w $(pwd)/cdrom.image/ |
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 |
84 |
|
|
85 |
echo "You now need to run /builds/bin/build_ISO as non-root" |
echo "You now need to run /stage/bin/build_ISO as non-root" |
86 |
|
|
87 |
# That's it. |
# That's it. |