#!/bin/sh

set -e

STATE="$1"
FILES="$2"

case "$STATE" in
    ArtifactInstall)
        dpkg -i "$FILES"/files/*.deb
        ;;
esac
exit 0
