#!/bin/sh

exit_handler()
{
    local rc=$?
    trap - EXIT
    if [ -S "/var/lib/apt/pipe" ]; then
	apt-pipe errors ||:
	apt-pipe quit ||:
    fi
    exit $rc
}

trap exit_handler HUP PIPE INT QUIT TERM EXIT

alterator-standalone packages
