summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2009-09-22 19:10:28 +0000
committerColin Watson <cjwatson@debian.org>2009-09-22 19:10:28 +0000
commitc7b3b9c173d1a350bde17232683c968cef444576 (patch)
tree0f22f886e6296097090774d64a4eae75a96c8dc1
parentf4c7df442b116e61bd1c04dada180e71c6083008 (diff)
downloaddebootstrap-c7b3b9c173d1a350bde17232683c968cef444576.tar.gz
Remove boneheaded use of sudo left over from testing (closes: #547949).
r60825
-rw-r--r--debian/changelog6
-rw-r--r--functions2
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index f1587e2..c0617e0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+debootstrap (1.0.17) UNRELEASED; urgency=low
+
+ * Remove boneheaded use of sudo left over from testing (closes: #547949).
+
+ -- Colin Watson <cjwatson@debian.org> Tue, 22 Sep 2009 20:09:52 +0100
+
debootstrap (1.0.16) unstable; urgency=low
[ Colin Watson ]
diff --git a/functions b/functions
index 0312157..cefb66d 100644
--- a/functions
+++ b/functions
@@ -1062,7 +1062,7 @@ setup_available () {
done >"$TARGET/var/lib/dpkg/available"
for pkg; do
- echo "$pkg install" | sudo dpkg --admindir "$TARGET/var/lib/dpkg" --set-selections
+ echo "$pkg install" | dpkg --admindir "$TARGET/var/lib/dpkg" --set-selections
done
}