14 |
exit 1 |
exit 1 |
15 |
fi |
fi |
16 |
|
|
17 |
|
rm -rf $(pwd)/$distarch/{images,isolinux} $(pwd)/$distarch/SME/base/{hdlist*,*.img} |
18 |
|
|
19 |
if [ "$distrel" == "7" ] |
if [ "$distrel" == "7" ] |
20 |
then |
then |
21 |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \ |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \ |
56 |
fi |
fi |
57 |
done |
done |
58 |
|
|
59 |
sed '/^cat .*pluginconf.d\/fedorakmod.conf.*<<.*EOF/,/^EOF$/s@^enabled.*@enabled = 0@' \ |
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 |
/usr/lib/anaconda-runtime/upd-instroot > upd-instroot |
61 |
chmod 755 upd-instroot |
chmod 755 upd-instroot |
62 |
sudo chown root:root upd-instroot |
sudo chown root:root upd-instroot |
78 |
# Copy updated isolinux files |
# Copy updated isolinux files |
79 |
sudo cp -f /stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
sudo cp -f /stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
80 |
|
|
81 |
find $(pwd)/$distarch -\( -not -user 9000 -o -not -group 9000 -\) -print0 | xargs -r0 chown 9000:9000 |
find $(pwd)/$distarch -\( -not -user 9000 -o -not -group 9000 -\) -print0 | sudo xargs -r0 chown 9000:9000 |
82 |
find $(pwd)/$distarch -\( -type f -not -perm -0664 -o -type d -not -perm -0775 -\) -print0 | 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 |
83 |
|
|
84 |
echo "You now need to run /stage/bin/build_ISO as non-root" |
echo "You now need to run /stage/bin/build_ISO as non-root" |
85 |
|
|