Files
hass-addons/unifi-cam-proxy-main/unifi-cam-proxy/rootfs/usr/bin/example2.sh
Michael 7cb3d49962 123
2021-11-10 16:49:05 +00:00

16 lines
417 B
Bash
Executable File

#!/usr/bin/with-contenv bashio
# ==============================================================================
# Home Assistant Community Add-on: Example
#
# Example add-on for Home Assistant.
# ------------------------------------------------------------------------------
main() {
bashio::log.trace "${FUNCNAME[0]}"
while true; do
echo "Second Script Output"
sleep 10
done
}
main "$@"