aboutsummaryrefslogtreecommitdiff
path: root/pbuilder-modules
diff options
context:
space:
mode:
authordancer <dancer>2003-09-03 23:07:21 +0000
committerdancer <dancer>2003-09-03 23:07:21 +0000
commitad8185260681f3bd63f776aa4ac796b2bb868c77 (patch)
tree2fb106370ee9093d208fa31a215bdd70ebfa3f5e /pbuilder-modules
parent34426e850bf31871a9f7f7921214c5dae774c055 (diff)
downloadpbuilder-ad8185260681f3bd63f776aa4ac796b2bb868c77.tar
pbuilder-ad8185260681f3bd63f776aa4ac796b2bb868c77.tar.gz
+2003-09-04 Junichi Uekawa <dancer@debian.org>
+ + * pbuilder-modules: fix typo in file existence checking. + + * debian/TODO: how about passing "-o dpkg::Options=--force-confnew" to apt? is now done. + Request from Roland Stigge <ernie@atari.antcom.de> + to finally implement the missing feature. + + * pbuilder-checkparams: set FORCE_CONFNEW array variable if + DEBIAN_FRONTEND is noninteractive to allow non-interactive install. + + * pbuilder-updatebuildenv: use FORCE_CONFNEW variable to + give force-confnew option to DPKG +
Diffstat (limited to 'pbuilder-modules')
-rw-r--r--pbuilder-modules2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-modules b/pbuilder-modules
index 2eea12e..7f7f821 100644
--- a/pbuilder-modules
+++ b/pbuilder-modules
@@ -205,7 +205,7 @@ function copy_local_configuration () {
echo " -> copying local configuration"
for a in hosts hostname resolv.conf; do
rm -f "$BUILDPLACE/etc/$a"
- if [ -f readlink -f "/etc/$a" ]; then
+ if [ ! -f "/etc/$a" ]; then
echo "E: /etc/$a does not exist, your setup is insane. fix it" >&2
fi
cp $( readlink -f "/etc/$a" ) "$BUILDPLACE/etc/$a";