This commit is contained in:
Richard Sperry 2025-04-17 14:14:03 -07:00
parent 9b46b2a4be
commit f10bfe60cc
3 changed files with 4 additions and 10 deletions

View file

@ -3,9 +3,11 @@
This directory is for shell scripts to be ran at boot time so you can add functionality if needed.
## custom-template.sh
## example-mqtt.sh
This script is an example of a script that has an on/off switch that can allow you to add extra functionality when needed. To run it,
This script is an example of a script that pulls the openMQTT source.
It has an on/off switch that can allow you to add extra functionality when needed. To run it,
change ENABLE to true and restart the VS Code server instance.
## PATHS.sh

View file

@ -1,8 +0,0 @@
#!/usr/bin/env bash
ENABLE=false
# shellcheck source=./PATHS.sh
source "/etc/s6-overlay/s6-rc.d/paths.sh"
if [ "$ENABLE" = true ]; then
echo "Custom Script"
fi