Does Puppet have any known issues with spaces in file paths? It would
of course scare Windows admins away... So I hope I am wrong in
thinking I read that.
Thanks a lot,
Mohamed.
https://github.com/oneclick/rubyinstaller/wiki/Troubleshooting:
"If you notice those directories contain spaces, it might be because
you installed Ruby in a folder with spaces (highly not recommended)
or..."
Thanks,
Mohamed.
Thanks Josh.
I run into an issue where this Exec would fail if the variable has a
space in it:
command => "$splunk_home\\bin\\splunk.exe start",
but then again that could happen in Unix just as well, not really
Windows specific.
I had to write:
command => "\"$splunk_home\\bin\\splunk.exe\" start",
So I am concluding that from the Puppet end-user perspective, there no
special issue with spaces in path names, at least not as a Windows
specific concern.
Thanks a lot,
Mohamed.
Thanks Josh.
I run into an issue where this Exec would fail if the variable has a
space in it:
command => "$splunk_home\\bin\\splunk.exe start",
but then again that could happen in Unix just as well, not really
Windows specific.
I had to write:
command => "\"$splunk_home\\bin\\splunk.exe\" start",
So I am concluding that from the Puppet end-user perspective, there no
special issue with spaces in path names, at least not as a Windows
specific concern.