summaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2009-09-22 19:10:28 (GMT)
committerColin Watson <cjwatson@debian.org>2009-09-22 19:10:28 (GMT)
commitc7b3b9c173d1a350bde17232683c968cef444576 (patch)
tree0f22f886e6296097090774d64a4eae75a96c8dc1 /functions
parentf4c7df442b116e61bd1c04dada180e71c6083008 (diff)
downloaddebootstrap-c7b3b9c173d1a350bde17232683c968cef444576.zip
debootstrap-c7b3b9c173d1a350bde17232683c968cef444576.tar.gz
debootstrap-c7b3b9c173d1a350bde17232683c968cef444576.tar.bz2
Remove boneheaded use of sudo left over from testing (closes: #547949).
r60825
Diffstat (limited to 'functions')
-rw-r--r--functions2
1 files changed, 1 insertions, 1 deletions
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
}