#!/bin/sh

. /usr/local/debsec/etc/config

cd $HOSTDIR
for host in *
do
	scp -qi $IDENTITY ${USER}@${host}:/var/lib/dpkg/status ${host}/
done
