I am running through an Ansible training course on Pluralsight and I am trying to deploy Apache from onto a remote CentOS box using (Ansible controller is also on CentOS).
The command I am using is:
ansible webservers -i inventory -m yum -a “name=httpd state=present” --sudo -ask-sudo-pass
But I get the following error:
ERROR! this task ‘yum’ has extra params, which is only allowed in the following modules: command, shell, script, include, include_vars, add_host, group_by, set_fact, raw, meta
This command works in the training material but not in my test lab so I’m a bit stuck with how to proceed.