Adding local udeb_exclude file functionality.
This commit is contained in:
parent
fbae06c426
commit
4b52adb6f7
|
@ -362,6 +362,12 @@ grep -v "^#" "${LH_BASE}"/data/debian-cd/"${LH_DISTRIBUTION}"/udeb_exclude > exc
|
||||||
grep -v "^#" "${LH_BASE}"/data/debian-cd/"${LH_DISTRIBUTION}"/exclude-udebs >> exclude
|
grep -v "^#" "${LH_BASE}"/data/debian-cd/"${LH_DISTRIBUTION}"/exclude-udebs >> exclude
|
||||||
grep -v "^#" "${LH_BASE}"/data/debian-cd/"${LH_DISTRIBUTION}"/exclude-udebs-${LH_ARCHITECTURE} >> exclude
|
grep -v "^#" "${LH_BASE}"/data/debian-cd/"${LH_DISTRIBUTION}"/exclude-udebs-${LH_ARCHITECTURE} >> exclude
|
||||||
|
|
||||||
|
# Local exclude file
|
||||||
|
if [ -e ../config/binary_debian-installer/udeb_exclude ]
|
||||||
|
then
|
||||||
|
cat ../config/binary_debian-installer/udeb_exclude >> exclude
|
||||||
|
fi
|
||||||
|
|
||||||
for EXCLUDE in `cat exclude`
|
for EXCLUDE in `cat exclude`
|
||||||
do
|
do
|
||||||
rm -f "${EXCLUDE}"_*.udeb
|
rm -f "${EXCLUDE}"_*.udeb
|
||||||
|
|
|
@ -823,6 +823,7 @@ LH_SYSVINIT="${LH_SYSVINIT}"
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Creating lh_binary_* configuration
|
# Creating lh_binary_* configuration
|
||||||
|
mkdir -p config/binary_debian-installer
|
||||||
mkdir -p config/binary_grub
|
mkdir -p config/binary_grub
|
||||||
mkdir -p config/binary_local-debs
|
mkdir -p config/binary_local-debs
|
||||||
mkdir -p config/binary_local-hooks
|
mkdir -p config/binary_local-hooks
|
||||||
|
|
Loading…
Reference in New Issue