Don't copy the local sysconfig directory.

This commit is contained in:
Jeffrey Townsend
2016-06-08 11:36:09 -07:00
parent 58e03edf42
commit 5ac829e85f

View File

@@ -82,7 +82,11 @@ else
fi
mkdir -p /newroot/etc/onl
cp -R /etc/onl/* /newroot/etc/onl
for thing in /etc/onl/*; do
if [ $thing != "sysconfig" ]; then
cp -R $thing /newroot/etc/onl
fi
done
if [ -f /etc/fw_env.config ]; then
cat /etc/fw_env.config >/newroot/etc/fw_env.config