#!/bin/bash # HBLINK3 DOCKER CONTROL SCRIPTS V2.0 # Version 13122025 # This script written by Shane Daley M0VUB. The script gracefully shuts down services while services are cleaned and logs are truncated. # We can also add items in this script for future use like updates or further log trims. # Add to the cron tab for auto execution # Copyright (C) 2020-2025 Shane P. Daley M0VUB # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # Restart routine for HBlink3 (ShaYmez docker only) # Start service clean/truncate/ and restart of services. echo Restarting HBlink3..... cd /etc/hblink3 sleep 1 echo "." sleep 1 echo ".." sleep 1 echo "..." docker-compose restart sleep 1 figlet "HBlink 3" sleep 1 echo "Checking HBlink is composed....." sleep 1 docker ps sleep 1 echo "Checking startup error logs....." sleep 1 docker container logs hblink echo "Done." echo "Flushing network tracking table....." conntrack -F sleep 1 echo "Restarting Dashboard....." systemctl restart hbmon figlet "HBmonitor3" echo "Done." echo "Now Exiting....." sleep 1 echo . sleep 1 echo .. sleep 1 echo ... echo "HBlink has been restarted. Proccess is now complete and you may now exit. AKA ShaYmez."