﻿#!/bin/sh

hasLogo=0

if [ -f  "/mnt/Storage/logo.png" ]
then
hasLogo=1
cp /mnt/Storage/logo.png /root/logo.png
fi

if [ "$hasLogo" -eq 1 ]
then
sync
sleep 3
cd /mnt/Storage
/home/ct/blctl off
reboot
fi

