#!/bin/sh

LOG="/var/log/yandex/dt-canary-deploy.log"

case "$1" in
    configure)
    	/usr/bin/touch $LOG
	/bin/chmod 0666 $LOG
	/bin/chown root:root $LOG
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac
