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
When working with 2.0.2 release, receive error:
Error: Could not retrieve catalog from remote server: Error 400 on SERVER: no parameter named 'value'
Example code:
sysctl { 'vm.swappiness': ensure => 'present', value => '10', }
The text was updated successfully, but these errors were encountered:
Perhaps you have another sysctl native or defined type?
sysctl
Sorry, something went wrong.
Nope, no other sysctl types in the environment.
Hey,
same problem here.
sysctl { 'vm.swappiness': ensure => present, value => '1', comment => 'Minimum amount of swapping without disabling it entirely.', }
Received error: Server Error: no parameter named 'value'
Trying this:
sysctl { 'vm.swappiness': ensure => present, val => '1', comment => 'Minimum amount of swapping without disabling it entirely.', }
Next error: Server Error: no parameter named 'comment'
Next try:
sysctl { 'vm.swappiness': ensure => present, val => '1', }
No error.
I'm using version 2.2.0.
No branches or pull requests
When working with 2.0.2 release, receive error:
Error: Could not retrieve catalog from remote server: Error 400 on SERVER: no parameter named 'value'
Example code:
The text was updated successfully, but these errors were encountered: