1 |
gordonr |
1.1 |
#!/bin/sh |
2 |
|
|
|
3 |
|
|
distname='SME Server' |
4 |
slords |
1.14 |
distvers=$(basename $(readlink -f $(pwd))) |
5 |
slords |
1.10 |
distrel=${distvers:0:1} |
6 |
slords |
1.5 |
distarch=$(uname -i) |
7 |
gordonr |
1.1 |
|
8 |
slords |
1.13 |
exec < /dev/null |
9 |
|
|
exec &> build_installer.$distarch |
10 |
|
|
|
11 |
slords |
1.10 |
if ! [ -d $distarch ] |
12 |
|
|
then |
13 |
|
|
echo "No $distarch directory?" |
14 |
|
|
exit 1 |
15 |
|
|
fi |
16 |
|
|
|
17 |
slords |
1.17 |
rm -rf $(pwd)/$distarch/{images,isolinux} $(pwd)/$distarch/SME/base/{hdlist*,*.img} |
18 |
|
|
|
19 |
slords |
1.10 |
if [ "$distrel" == "7" ] |
20 |
|
|
then |
21 |
|
|
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \ |
22 |
slords |
1.9 |
--productpath SME \ |
23 |
gordonr |
1.1 |
--withnumbers \ |
24 |
slords |
1.10 |
$(pwd)/$distarch/ |
25 |
gordonr |
1.1 |
|
26 |
slords |
1.10 |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/pkgorder \ |
27 |
slords |
1.9 |
--product SME \ |
28 |
slords |
1.10 |
$(pwd)/$distarch \ |
29 |
slords |
1.11 |
$distarch > pkgorder.$distarch |
30 |
gordonr |
1.1 |
|
31 |
slords |
1.10 |
for PKG in /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 |
gordonr |
1.1 |
|
40 |
slords |
1.10 |
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
41 |
slords |
1.7 |
--product "$distname" \ |
42 |
slords |
1.19 |
--version "${distvers/[^0-9.]*/}" \ |
43 |
slords |
1.7 |
--release "$distname" \ |
44 |
slords |
1.9 |
--prodpath SME \ |
45 |
slords |
1.11 |
--pkgorder pkgorder.$distarch \ |
46 |
slords |
1.10 |
$(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 |
slords |
1.18 |
sed "/installforallkernels/ised -i 's|\\\\(enabled\\\\) = 1|\\\\1 = 0|' \$DEST/etc/yum/pluginconf.d/kmod.conf" \ |
60 |
slords |
1.12 |
/usr/lib/anaconda-runtime/upd-instroot > upd-instroot |
61 |
|
|
chmod 755 upd-instroot |
62 |
|
|
sudo chown root:root upd-instroot |
63 |
|
|
|
64 |
slords |
1.10 |
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
65 |
|
|
--product "$distname" \ |
66 |
slords |
1.19 |
--version "${distvers/[^0-9.]*/}" \ |
67 |
slords |
1.10 |
--release "$distname" \ |
68 |
|
|
--prodpath SME \ |
69 |
|
|
--bugurl http://bugs.contribs.org/ \ |
70 |
|
|
$(pwd)/$distarch/ |
71 |
slords |
1.12 |
|
72 |
slords |
1.20 |
rm -rf $distarch/buildinstall.tree.*/ |
73 |
slords |
1.12 |
sudo rm upd-instroot |
74 |
slords |
1.10 |
fi |
75 |
gordonr |
1.1 |
|
76 |
|
|
# Remove previous linked files |
77 |
slords |
1.10 |
find $(pwd)/$distarch/SME/ -type l | xargs rm -f |
78 |
gordonr |
1.1 |
|
79 |
|
|
# Copy updated isolinux files |
80 |
slords |
1.10 |
sudo cp -f /stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
81 |
slords |
1.6 |
|
82 |
slords |
1.16 |
find $(pwd)/$distarch -\( -not -user 9000 -o -not -group 9000 -\) -print0 | sudo xargs -r0 chown 9000:9000 |
83 |
|
|
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 |
slords |
1.8 |
|
85 |
slords |
1.10 |
echo "You now need to run /stage/bin/build_ISO as non-root" |
86 |
gordonr |
1.1 |
|
87 |
|
|
# That's it. |