#!/bin/sh

VERSION=1.41

set -e
cd /tmp
wget http://ftp.skolelinux.no/debian/pool/main/p/popularity-contest/popularity-contest_${VERSION}_all.deb

if DEBIAN_FRONTEND=noninteractive dpkg -i popularity-contest_${VERSION}_all.deb
then
    :
else
    # Resolve dependencies on woody
    DEBIAN_FRONTEND=noninteractive apt-get -y install -f
fi

cat >>/etc/popularity-contest.conf <<EOF
PARTICIPATE="yes"
USEHTTP="yes"
SUBMITURLS="http://popcon.debian.org/cgi-bin/popcon.cgi http://popcon.skolelinux.org/cgi-bin/popcon-submit.cgi"
EOF

/etc/cron.weekly/popularity-contest

