Correction: With the puppet-agent feature set for...
# bolt
p
Correction: With the puppet-agent feature set for that target the output is as follows (in the example above I had the feature in the wrong place of the inventory file):
Copy code
>bolt task run package action=status name=activemq provider=puppet_gem -t queue03.pl
Started on queue03.pl...
Finished on queue03.pl:
  {
    "status": "absent",
    "version": [
      "absent"
    ]
  }
Successful on 1 target: queue03.pl
Ran on 1 target in 4.95 sec
Without the puppet-agent feature I get:
Copy code
>bolt task run package action=status name=activemq provider=puppet_gem -t queue03.pl
Started on queue03.pl...
Finished on queue03.pl:
  {
    "status": "installed",
    "version": "5.13.3-8.el8",
    "latest": "5.13.3-10.el8"
  }
Successful on 1 target: queue03.pl
Ran on 1 target in 9.0 sec