We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
postgres/server/image.sls uses "legacy" syntax:
postgresql-service-reload: module.run: - name: test.true
"The legacy style will no longer be available starting in the 3005 release" (https://docs.saltproject.io/en/3002/ref/states/all/salt.states.module.html#salt.states.module.run)
And it already incompatible with minion configuration:
use_superseded: - module.run
which is used in my case for other purposes.
Replace module.run with other function
Simple is better
The text was updated successfully, but these errors were encountered:
fix(contributing): runnig formula with bake_image=True saltstack-form…
4435603
…ulas#317
No branches or pull requests
Is your feature request related to a problem?
postgres/server/image.sls uses "legacy" syntax:
"The legacy style will no longer be available starting in the 3005 release" (https://docs.saltproject.io/en/3002/ref/states/all/salt.states.module.html#salt.states.module.run)
And it already incompatible with minion configuration:
which is used in my case for other purposes.
Describe the solution you'd like
Replace module.run with other function
Describe alternatives you've considered
Simple is better
The text was updated successfully, but these errors were encountered: