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
Prior to this commit there was a possibility that malformed
strings could be passed in to the resource. This could lead
to unsafe executions on a remote system.
The parameters that are susceptible are `install_secret_file`.
This commit fixes the above by adding validation to ensure the given
values confirm to expectation.
`secret_file` is validated with a regular expression that ensures the
given value is a valid path.
Copy file name to clipboardExpand all lines: manifests/server.pp
-3
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,6 @@
17
17
# The location, as a path, of !includedir for custom configuration overrides.
18
18
# @param install_options
19
19
# Passes [install_options](https://docs.puppetlabs.com/references/latest/type.html#package-attribute-install_options) array to managed package resources. You must pass the appropriate options for the specified package manager
20
-
# @param install_secret_file
21
-
# Path to secret file containing temporary root password.
22
20
# @param manage_config_file
23
21
# Whether the MySQL configuration file should be managed. Valid values are `true`, `false`. Defaults to `true`.
0 commit comments