#!/bin/sh
#
# 

CHR=${1:-"stable unstable"}

for i in $CHR; do
	echo "  $i:"
	chrapt $i apt-get -y upgrade
	#chrapt $i apt-get autoclean
done
