diff --git a/dump_configs.sh b/dump_configs.sh index 411850e..f09543c 100644 --- a/dump_configs.sh +++ b/dump_configs.sh @@ -44,4 +44,6 @@ sudo chmod 664 $dname/* echo "Compressing up and deleting $dname to $dname.tar.gz..." tar czf $dname.tar.gz $dname -rm -rf $dname \ No newline at end of file +rm -rf $dname + +echo "dump_configs complete" > ./status.txt diff --git a/installer_auto.sh b/installer_auto.sh index 2f62530..de7d4d9 100644 --- a/installer_auto.sh +++ b/installer_auto.sh @@ -14,4 +14,5 @@ sudo apt install git -y cd /home/$username git clone https://github.com/PrincessPi3/Precision-Timekeeping-Fuckery.git cd /home/$username/Precision-Timekeeping-Fuckery +echo "installer_auto complete" > ./status.txt bash installer1.sh \ No newline at end of file diff --git a/reconfig_full.sh b/reconfig_full.sh index f36806f..1cfb9eb 100644 --- a/reconfig_full.sh +++ b/reconfig_full.sh @@ -69,4 +69,6 @@ echo "Setting up crontab" sudo crontab $crontab_new # start da services -bash ./services.sh start # 1>/dev/null \ No newline at end of file +bash ./services.sh start # 1>/dev/null + +echo "reconfig_full complete" > ./status.txt \ No newline at end of file diff --git a/services.sh b/services.sh index d8d3853..7f39dfc 100644 --- a/services.sh +++ b/services.sh @@ -7,4 +7,5 @@ if [ -z $1 ]; then fi echo "Running $1 on Services" -sudo systemctl $1 gpsd chrony influxdb telegraf grafana-server syslog-ng \ No newline at end of file +sudo systemctl $1 gpsd chrony influxdb telegraf grafana-server syslog-ng +echo "services complete" > ./status.txt