#!/bin/sh

DEST="/etc/yandex/statbox-push-client/push-client.yaml"

if [ "$1" = "remove" ]; then
    if [ -L $DEST ]; then
        rm -f $DEST
    fi
fi

