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
On windows platform, the 'root' user does not exist by default.
I was able to fix by changing ark/resources/default.rb as follows:
attribute :owner, kind_of: String, default: case node['platform_family'] when 'windows' 'Administrator' else 'root' end
However, I'm not sure if the above fix is appropriate for the current design.
It seems that some platform-dependent default value is implemented in ark/libraries/resource_default.rb.
The text was updated successfully, but these errors were encountered:
Dupe of #168
Sorry, something went wrong.
No branches or pull requests
On windows platform, the 'root' user does not exist by default.
I was able to fix by changing ark/resources/default.rb as follows:
However, I'm not sure if the above fix is appropriate for the current design.
It seems that some platform-dependent default value is implemented in ark/libraries/resource_default.rb.
The text was updated successfully, but these errors were encountered: