Files
ioBroker.docker/debian12/userscripts/userscript_firststart_example.sh
2023-08-29 23:06:47 +02:00

13 lines
339 B
Bash

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