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
sysctl
env
The current regular expressions used for sysctl and env metas in the Machine class restrict the use of spaces within the value field.
Machine
value
This limitation makes impossible to adjust certain parameters, such as net.ipv4.tcp_rmem, which requires three values:
net.ipv4.tcp_rmem
net.ipv4.tcp_rmem=4096 87380 33554432
Furthermore, users may want to declare environment variables containing spaces.
To address this, we plan to modify the regex to allow spaces while ensuring compliance with the key=value syntax.
key=value
The text was updated successfully, but these errors were encountered:
Relax regex for sysctls and envs (#259)
3705f25
Skazza94
When branches are created from issues, their pull requests are automatically linked.
The current regular expressions used for
sysctl
andenv
metas in theMachine
class restrict the use of spaces within thevalue
field.This limitation makes impossible to adjust certain parameters, such as
net.ipv4.tcp_rmem
, which requires three values:Furthermore, users may want to declare environment variables containing spaces.
To address this, we plan to modify the regex to allow spaces while ensuring compliance with the
key=value
syntax.The text was updated successfully, but these errors were encountered: