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
Description pkg.installedversion parameter treats version 3006.10, i.e. ending with .10, like a floating point number, rather than a string - it renders it as 3006.1. The same goes for Pillar. Only when quoted, does this have desired effect.
# salt 'foo' state.show_sls test
foo:
----------
salt-minion:
----------
__env__:
base
__sls__:
test
pkg:
|_
----------
version:
3006.10
- installed
|_
----------
order:
10000
VM (Virtualbox, KVM, etc. please specify)
onedir packaging
Steps to Reproduce the behavior Setup above already describes the steps required to reproduce the issue.
Expected behavior
I'd expect that both the State and Pillar will treat 3006.10 as 3006.10, not as 3006.1, without any additional quoting. In case when Pillar is being used, that's double the quoting - one in the Pillar, one in the State.
As far as I could see, none of this is documented, so it is a bug either way.
Versions Report
salt --versions-report
# salt --versions-reportSalt Version:
Salt: 3006.10Python Version:
Python: 3.10.16 (main, Mar 6 2025, 02:23:15) [GCC 11.2.0]Dependency Versions:
cffi: 1.16.0cherrypy: unknowncryptography: 42.0.5dateutil: 2.8.1docker-py: Not Installedgitdb: Not Installedgitpython: Not InstalledJinja2: 3.1.6libgit2: 1.7.2looseversion: 1.0.2M2Crypto: Not InstalledMako: Not Installedmsgpack: 1.0.2msgpack-pure: Not Installedmysql-python: Not Installedpackaging: 22.0pycparser: 2.21pycrypto: Not Installedpycryptodome: 3.19.1pygit2: 1.14.1python-gnupg: 0.4.8PyYAML: 6.0.1PyZMQ: 23.2.0relenv: 0.18.1smmap: Not Installedtimelib: 0.2.4Tornado: 4.5.3ZMQ: 4.3.4System Versions:
dist: ubuntu 24.04.2 noblelocale: utf-8machine: x86_64release: 6.11.0-19-genericsystem: Linuxversion: Ubuntu 24.04.2 noble
The text was updated successfully, but these errors were encountered:
You do mention, in some places, when one form of quoting, or another, is required, but most examples are unquoted.
An example of quoting being mentioned:
NOTE: When using comparison operators, the expression must be enclosed in quotes to avoid a YAML render error.
And example when it is not mentioned, but shown in a code example:
WILDCARD VERSIONS
As of the 2017.7.0 release, this state now supports wildcards in package versions for SUSE SLES/Leap/Tumbleweed, Debian/Ubuntu, RHEL/CentOS, Arch Linux, and their derivatives. Using wildcards can be useful for packages where the release name is built into the version in some way, such as for RHEL/CentOS which typically has version numbers like 1.2.34-5.el7. An example of the usage for this would be:
mypkg:
pkg.installed:
- version: '1.2.34*'
So yes, I still maintain that it is a bug in your (Salt's) documentation.
@rjc Salt doesn't repeat how to write yaml, and I understand that documnetation for does have some issues but the points you are rising are now an issue
try
Description
pkg.installed
version
parameter treats version 3006.10, i.e. ending with.10
, like a floating point number, rather than a string - it renders it as 3006.1. The same goes for Pillar. Only when quoted, does this have desired effect.Setup
Pillar:
State:
Then run:
and I get
3006.1
instead of the expedcted3006.10
.The same goes for state:
Again,
3006.1
instead of3006.10
.After quoting the Pillar value:
I eventually get
3006.10
:But, when rendering the SLS, I still get
3006.1
:Now, if I quote the Pillar data like so (quote types don't matter - they can be either single or double):
I eventually get:
BTW, the same thing happens if I don't use Pillar at all:
and then render it:
Quoting (again, doesn't matter whether single or double), like so:
obviously solves the issue:
Steps to Reproduce the behavior
Setup above already describes the steps required to reproduce the issue.
Expected behavior
I'd expect that both the State and Pillar will treat 3006.10 as 3006.10, not as 3006.1, without any additional quoting. In case when Pillar is being used, that's double the quoting - one in the Pillar, one in the State.
As far as I could see, none of this is documented, so it is a bug either way.
Versions Report
salt --versions-report
The text was updated successfully, but these errors were encountered: