Let's say I am building an app with a python script inside the bin folder.
I want my script to only run once (at the very first startup at never again).
If I restart, I don't want the script to run again. How would I go about to do that?
inputs.conf
interval = -1
this is running my script at each startup so this is not what I want.
schedule doesn't seem to be what I want either.
Should my python script update the inputs.conf from disable = false to disable = true? that's sounds awful
... View more