| Puppet Version: 6.23 Puppet Server Version: 6.16.1 OS Name/Version: Windows 10 I'm not able to specify logging options when using the package resource with Windows MSIs. When trying to pass the log parameter, it does not work since Puppet places quotes around it. ``` install_options => [ '/qn', '/norestart', '/l*v c:\windows\temp\msi_log.txt' ], ``` This results in `msiexec /qn /norestart /i package.msi "/l*v c:\windows\temp\msi_log.txt"` which is invalid. Is there a way I can override this behavior to pass the parameter correctly? |