Files
ioBroker.docker/arm32v7/scripts/userscript_everystart_example.sh
2021-04-02 00:43:23 +02:00

14 lines
318 B
Bash

#!/bin/bash
# This is an example script file.
# To run the Script on every start of the container you have to rename it to userscript_everystart.sh.
# You can add your advanced script code here!
echo ' '
echo "I'm your startscript userscript_everystart.sh. I will run on EVERY container startup."
echo ' '
exit 0