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
The current Salt provisioning logic uses awkwardly constructed sed invocations, with a conditional grep duplicating the regex, to ensure files are added to qubes-rpc files in dom0. We should instead use the Salt file.line module to implement these lines in files. By way of example:
The latter is much more readable, and removes duplication of both the regular expression and the filepath. There are a few places in the config that should be fixed:
The current Salt provisioning logic uses awkwardly constructed
sed
invocations, with a conditionalgrep
duplicating the regex, to ensure files are added to qubes-rpc files in dom0. We should instead use the Salt file.line module to implement these lines in files. By way of example:Before
After
[untested example code]
The latter is much more readable, and removes duplication of both the regular expression and the filepath. There are a few places in the config that should be fixed:
The text was updated successfully, but these errors were encountered: