#!/bin/bash
# Copyright (C) 2019 Checkmk GmbH - License: GNU General Public License v2
# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and
# conditions defined in the file COPYING, which is part of this source code package.

BASE_PATH=/var/spool/sylo

if [ -f "$BASE_PATH/silo.hint" ]; then
    echo "<<<sylo>>>"
    stat --printf "%Y " "$BASE_PATH/silo.hint"
    cat "$BASE_PATH/silo.hint"
    echo
fi
