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

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