28 |
$(pwd)/$distarch \ |
$(pwd)/$distarch \ |
29 |
$distarch > pkgorder.$distarch |
$distarch > pkgorder.$distarch |
30 |
|
|
31 |
for PKG in /releases/$distrel/smeextras/$distarch/RPMS/*.rpm |
for PKG in /build/smeserver/repo/releases/$distrel/smeextras/$distarch/RPMS/*.rpm |
32 |
do |
do |
33 |
PKGFILE=$(basename $PKG) |
PKGFILE=$(basename $PKG) |
34 |
if [ ! -f $(pwd)/$distarch/SME/RPMS/$PKGFILE ] |
if [ ! -f $(pwd)/$distarch/SME/RPMS/$PKGFILE ] |
47 |
|
|
48 |
sed -i 's@1,2,3@1@' $(pwd)/$distarch/.discinfo |
sed -i 's@1,2,3@1@' $(pwd)/$distarch/.discinfo |
49 |
else |
else |
50 |
for PKG in /releases/testing/$distrel/smeextras/$distarch/RPMS/*.rpm |
for PKG in /build/smeserver/repo/releases/testing/$distrel/smeextras/$distarch/RPMS/*.rpm |
51 |
do |
do |
52 |
PKGFILE=$(basename $PKG) |
PKGFILE=$(basename $PKG) |
53 |
if [ ! -f $(pwd)/$distarch/SME/$PKGFILE ] |
if [ ! -f $(pwd)/$distarch/SME/$PKGFILE ] |
80 |
find $(pwd)/$distarch/SME/ -type l | xargs rm -f |
find $(pwd)/$distarch/SME/ -type l | xargs rm -f |
81 |
|
|
82 |
# Copy updated isolinux files |
# Copy updated isolinux files |
83 |
sudo cp -f /stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
sudo cp -f /build/smeserver/stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
84 |
|
|
85 |
find $(pwd)/$distarch -\( -not -user 9000 -o -not -group 9000 -\) -print0 | sudo xargs -r0 chown 9000:9000 |
find $(pwd)/$distarch -\( -not -user 10020 -o -not -group 10020 -\) -print0 | sudo xargs -r0 chown 10020:10020 |
86 |
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 |
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 |
87 |
|
|
88 |
echo "You now need to run /stage/bin/build_ISO as non-root" |
echo "You now need to run /build/smeserver/stage/bin/build_ISO as non-root" |
89 |
|
|
90 |
# That's it. |
# That's it. |