#!/bin/sh


case "$1" in
	remove)
		add-apt-repository -r -y ppa:ubuntustudio-ppa/backports
		;;
	*)
		add-apt-repository -y ppa:ubuntustudio-ppa/backports
		;;
	esac

apt-get update
