Hi,
First off, this plugin is awesome!
Hopefully this is the right place for a feature request:
I'd like to have a script run on startup/reboot of the server after Docker has finished starting up. The script starts a VM.
My workaround:
#!/bin/bash
sleep 240 && virsh start uuid-of-vm
I figure that the "At Startup Of Array" schedule in User Scripts would work; however, it is executed when the array BEGINS starting up and not when the array has COMPLETED starting up. Sure, I can increase the sleep interval to a longer time period but as the array gets larger and I add more containers/VMs, the sleep time would have to be adjusted.
TL;DR Can more schedule options be added like: "Array Startup", "Array Startup Complete", "Docker Startup", "Docker Startup Complete", "VMs Startup", "VMs Startup Complete".
For now, is there something I can add to the script that would allow it to run after a certain docker container has (or all docker containers have) started?
Thanks!