#!/bin/sh
### This lib is meant to be included by other scripts to set some generic
### vars.

host=pkgsum.fabbione.net

arch=$(udpkg --print-architecture)

## check TOPDIR

if [ -z "${TOPDIR}" ]; then
  TOPDIR="/target"
fi

## determine the Release we are working on

if [ -e "${TOPDIR}/etc/lsb-release" ]; then
  . "${TOPDIR}/etc/lsb-release"
fi

release=$DISTRIB_CODENAME

## report file target

report="/var/log/system-integrity-check-report"
