summaryrefslogtreecommitdiff
path: root/zshfunc/upgrade-porter-chroots
blob: 7f220602a053781fb541ec14008fa30b48bb9e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
## vim:ft=zsh:foldmethod=marker

upgrade-porter-chroots() {
	cd
	for i in $DEBPORTERHOSTS; do
		mkdir hosts/chroot-$i 2>/dev/null || continue;
		echo $i;
		preexec $i;
		ssh $i -t 'sudo /usr/sbin/upgrade-porter-chroots'
	done
}