Reputation: 1068
This was working fine - cant seem to find out what changed either - but my vagrant up is now reporting this:
Any help appreciated as to why:
Error executing action create
on resource 'directory[/var/log/nginx]'
================================================================================
Chef::Exceptions::UserIDNotFound
cannot determine user id for 'nginx', does the user exist on this system?
Upvotes: 2
Views: 748
Reputation: 21226
Obviously you don't create nginx user anywhere.
user 'nginx' do
system true
end
Upvotes: 2