Before Ansible 2, one could run a background module like so:
self.runner = ansible.runner.Runner(
module_name=self.module_name,
module_args=self.module_args,
pattern=self.pattern,
forks=self.forks,
sudo=True,
background=self.background)
How can I get the same background functionality in Ansible 2? I’ve looked at all of the possible Options params and can’t seem to find it.