Module yum and package?

Yum says it will do a wild card on the update (equivalent to “yum update”). Will the module “package” also do a wildcard?

Mike

I’m trying a test. I have:

tasks:
  - name: update packages
    package:
      name: ‘*’
      state: latest

And executed as:
ansible-playbook -u root -k —limit host yum.yml

and get:
fatal: [host]: FAIKED! => {“msg”: “module (yum) is missing interpreter line”}

Mike