#!/bin/sh
# Copyright (C) 2002-2005 Flavio Stanchina
# Copyright (C) 2005-2006 Aric Cyr
# Copyright (C) 2007 Mario Limonciello
# Copyright (C) 2009 Alberto Milone

set -e

case "$1" in
	configure)
		echo "deb http://hp.archive.canonical.com/updates trusty-stella public" > /etc/apt/sources.list.d/trusty-stella.list
		echo "deb-src http://hp.archive.canonical.com/updates trusty-stella public" >> /etc/apt/sources.list.d/trusty-stella.list
	;;

	abort-upgrade|abort-remove|abort-deconfigure)
	;;

	*)
		echo "postinst called with unknown argument \`$1'" >&2
		exit 1
	;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0
