1 |
#!/bin/sh |
2 |
|
3 |
distname='SME Server' |
4 |
distvers=$(basename $(readlink -f $(pwd))) |
5 |
distrel=${distvers:0:1} |
6 |
distarch=$(uname -i) |
7 |
|
8 |
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 |
if [ "$distrel" == "10" ] |
17 |
then |
18 |
echo "do not run for $distrel" |
19 |
exit 1 |
20 |
fi |
21 |
|
22 |
rm -rf $(pwd)/$distarch/{images,isolinux} $(pwd)/$distarch/SME/base/{hdlist*,*.img} |
23 |
|
24 |
if [ "$distrel" == "7" ] |
25 |
then |
26 |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \ |
27 |
--productpath SME \ |
28 |
--withnumbers \ |
29 |
$(pwd)/$distarch/ |
30 |
|
31 |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/pkgorder \ |
32 |
--product SME \ |
33 |
$(pwd)/$distarch \ |
34 |
$distarch > pkgorder.$distarch |
35 |
|
36 |
for PKG in /build/smeserver/repo/$distrel/smeextras/$distarch/RPMS/*.rpm |
37 |
do |
38 |
PKGFILE=$(basename $PKG) |
39 |
if [ ! -f $(pwd)/$distarch/SME/RPMS/$PKGFILE ] |
40 |
then |
41 |
ln -sf $PKG $(pwd)/$distarch/SME/RPMS/ |
42 |
fi |
43 |
done |
44 |
|
45 |
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
46 |
--product "$distname" \ |
47 |
--version "${distvers/[^0-9.]*/}" \ |
48 |
--release "$distname" \ |
49 |
--prodpath SME \ |
50 |
--pkgorder pkgorder.$distarch \ |
51 |
$(pwd)/$distarch/ |
52 |
|
53 |
sed -i 's@1,2,3@1@' $(pwd)/$distarch/.discinfo |
54 |
elif [ "$distrel" == "8" ] |
55 |
then |
56 |
for PKG in /build/smeserver/repo/$distrel/smeextras/$distarch/RPMS/*.rpm |
57 |
do |
58 |
PKGFILE=$(basename $PKG) |
59 |
if [ ! -f $(pwd)/$distarch/SME/$PKGFILE ] |
60 |
then |
61 |
ln -sf $PKG $(pwd)/$distarch/SME/ |
62 |
fi |
63 |
done |
64 |
|
65 |
cp /usr/lib/anaconda-runtime/mk-images* . |
66 |
sed -i -e 's/count=12/count=15/' mk-images.* |
67 |
sed -e "/installforallkernels/ised -i 's|\\\\(enabled\\\\) = 1|\\\\1 = 0|' \$DEST/etc/yum/pluginconf.d/kmod.conf" \ |
68 |
-e 's|^usr/\(.*/libz.*\)|&\n\1|' /usr/lib/anaconda-runtime/upd-instroot > upd-instroot |
69 |
chmod 644 mk-images.* |
70 |
chmod 755 mk-images upd-instroot |
71 |
sudo chown root:root mk-images* upd-instroot |
72 |
|
73 |
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
74 |
--product "$distname" \ |
75 |
--version "${distvers/[^0-9.]*/}" \ |
76 |
--release "$distname" \ |
77 |
--prodpath SME \ |
78 |
--bugurl http://bugs.contribs.org/ \ |
79 |
$(pwd)/$distarch/ |
80 |
sed -i 's/ALL/1/' $distarch/.discinfo |
81 |
|
82 |
sudo rm -rf $distarch/buildinstall.tree.*/ mk-images* upd-instroot |
83 |
elif [ "$distrel" == "9" ] |
84 |
then |
85 |
sed -e '/anaconda.repos.d/arm -f $DEST/etc/anaconda.repos.d/*' /usr/lib/anaconda-runtime/upd-instroot > upd-instroot |
86 |
chmod 755 upd-instroot |
87 |
sudo chown root:root upd-instroot |
88 |
|
89 |
echo "delete repodata repoview and rebuild" |
90 |
rm -rf $(pwd)/$distarch/{repodata,repoview}/ |
91 |
mkdir -p $(pwd)/$distarch/repodata/ |
92 |
/bin/cp -af $(pwd)/$distarch/Packages/base/comps.xml $(pwd)/$distarch/repodata/ |
93 |
|
94 |
createrepo --quiet --database --skip-symlinks --simple-md-filenames --groupfile repodata/comps.xml $(pwd)/$distarch/ |
95 |
sync; rm -rf $(pwd)/$distarch/.olddata |
96 |
|
97 |
# add --final when we have final product |
98 |
#PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
99 |
# --product "$distname" \ |
100 |
# --version "${distvers/[^0-9.]*/}" \ |
101 |
# --release "$distname" \ |
102 |
# #--brand "centos" \ |
103 |
# --final \ |
104 |
# --bugurl http://bugs.contribs.org/ \ |
105 |
# --output $(pwd)/$distarch/ \ |
106 |
# /build/smeserver/repo/testing/$distrel/smeextras/$distarch/ \ |
107 |
# $(pwd)/$distarch/ |
108 |
echo "Anaconda buildinstall...." |
109 |
PYTHONPATH=/usr/lib/anaconda/ sudo /usr/lib/anaconda-runtime/buildinstall \ |
110 |
--product "$distname" \ |
111 |
--version "${distvers/[^0-9.]*/}" \ |
112 |
--release "$distname" \ |
113 |
--final \ |
114 |
--bugurl http://bugs.contribs.org/ \ |
115 |
--output $(pwd)/$distarch/ \ |
116 |
/build/smeserver/repo/$distrel/smeextras/$distarch/ \ |
117 |
$(pwd)/$distarch/ |
118 |
|
119 |
echo "sed treeinfo" |
120 |
/bin/sed -i -e "s|packagedir =.*|packagedir = Packages|" $(pwd)/$distarch/.treeinfo |
121 |
|
122 |
echo "upd-instroot" |
123 |
sudo rm -f awk ../pci.ids *-logos-*.rpm grub-*.rpm upd-instroot |
124 |
fi |
125 |
|
126 |
# Remove previous linked files |
127 |
find $(pwd)/$distarch/SME/ -type l | xargs rm -f |
128 |
|
129 |
# Copy updated isolinux files |
130 |
sudo cp -f /build/smeserver/stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
131 |
|
132 |
find $(pwd)/$distarch -\( -not -user 10007 -o -not -group 10018 -\) -print0 | sudo xargs -r0 chown 10007:10018 |
133 |
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 |
134 |
|
135 |
echo "You now need to run /build/smeserver/stage/bin/build_ISO as non-root" |
136 |
|
137 |
# That's it. |