~ubuntu-branches/ubuntu/karmic/pkgsel/karmic

1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

# Install popularity-contest but remove it if the user decides not to
# participate.
if in-target sh -c "debconf-apt-progress --no-progress --logstderr -- apt-get -o APT::Install-Recommends=false -q -y -f install popularity-contest"; then
	if ! grep -q '^PARTICIPATE=\"*yes\"*' /target/etc/popularity-contest.conf; then
		in-target dpkg --purge popularity-contest
	fi
fi