Ian Warner
Ian Warner

Reputation: 1068

vagrant now reporting error about nginx user not being created

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

Answers (1)

Draco Ater
Draco Ater

Reputation: 21226

Obviously you don't create nginx user anywhere.

user 'nginx' do
  system true
end

Upvotes: 2

Related Questions