I am using func to perform parallel commands on our servers.
The other day, we had an issue when a service restart of puppet
via func
made all our severs hit our puppetmaster
at the same time.
My question: How can I execute the same exact command on a set of servers while adding a delay before it's executed on the individual servers?
E.g.: random_delay && service puppet restart
I am interested in the random_delay
part of the command.