diff options
author | Colin Watson <cjwatson@debian.org> | 2009-09-22 19:10:28 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2009-09-22 19:10:28 +0000 |
commit | c7b3b9c173d1a350bde17232683c968cef444576 (patch) | |
tree | 0f22f886e6296097090774d64a4eae75a96c8dc1 | |
parent | f4c7df442b116e61bd1c04dada180e71c6083008 (diff) | |
download | debootstrap-c7b3b9c173d1a350bde17232683c968cef444576.tar.gz |
Remove boneheaded use of sudo left over from testing (closes: #547949).
r60825
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | functions | 2 |
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 ] @@ -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 } |