Using .cfg suffix for consistency with debian-installer on preseed files in config/preseed.

This commit is contained in:
Daniel Baumann 2012-12-31 10:18:36 +01:00
parent 8f06bcd738
commit 36d7b899f8
1 changed files with 3 additions and 3 deletions

View File

@ -38,8 +38,8 @@ Check_lockfile .lock
# Creating lock file # Creating lock file
Create_lockfile .lock Create_lockfile .lock
if ls config/preseed/*.preseed > /dev/null 2>&1 || \ if ls config/preseed/*.cfg > /dev/null 2>&1 || \
ls config/preseed/*.preseed.chroot > /dev/null 2>&1 || \ ls config/preseed/*.cfg.chroot > /dev/null 2>&1 || \
ls chroot/root/packages.chroot.cfg > /dev/null 2>&1 ls chroot/root/packages.chroot.cfg > /dev/null 2>&1
then then
# Check dependency # Check dependency
@ -48,7 +48,7 @@ then
# Install dependency # Install dependency
Install_package Install_package
for PRESEED in config/preseed/*.preseed config/preseed/*.preseed.chroot chroot/root/packages.chroot.cfg for PRESEED in config/preseed/*.cfg config/preseed/*.cfg.chroot chroot/root/packages.chroot.cfg
do do
if [ -e "${PRESEED}" ] if [ -e "${PRESEED}" ]
then then