> How can I make sure a package is always up to date?

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
  bundle agent main
  {
    vars:
        "latest_pkgs" slist => { "singularity", "singularity-devel" };

    packages:

      "$(latest_pkgs)"
        policy => "present",
        comment => "Important to automatically track the latest and greatest because ....",
        version => "latest";
  }

The packages promise implementation shown above has been available since 3.7.0.