You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ondemand_package defaults to latest meaning this will install the latest version on the versioned yum/deb repository. For example, it'll install the latest version, 2.0.20 from the versioned 2.0 yum repo.
We use ondemand_package for the name paramter of the ansible yum so you can speicify a specific version with ondemand-2.0.20 or use the comparison operators ansible supports.
However the rpm install logic shows that to get the latest package, you should use ondemand_package: ondemand, and this is actually the default.
The 2nd para also has some typos and probably needs to be updated for the default of v3 packages now?
The text was updated successfully, but these errors were encountered:
ondemand_package can be used to control the version of the rpm/deb package installed. The default, ondemand, will install the latest version available from the relevant repository. You can specify a specific version using e.g. ondemand-3.0.3 or use the comparison operators supported by the name parameter of the ansible yum module.
In README#installing-a-specific-version this says:
However the rpm install logic shows that to get the
latest
package, you should useondemand_package: ondemand
, and this is actually the default.The 2nd para also has some typos and probably needs to be updated for the default of v3 packages now?
The text was updated successfully, but these errors were encountered: