mirror of
https://github.com/elasticdog/packer-arch.git
synced 2026-07-18 00:45:20 +00:00
The Vagrant documentation for option "group" in syncing folders states (in https://www.vagrantup.com/docs/synced-folders/basic_usage.html#group): "By default this will be the SSH user". Vagrant indeed tries to change the owner and group of synchronized files to vagrant:vagrant (not vagrant:users). It outputs: The following SSH command responded with a non-zero exit status. Vagrant assumes that this means the command failed! find /vagrant '!' -type l -a '(' ! -user vagrant -or ! -group vagrant ')' -exec chown vagrant:vagrant '{}' + Stdout from the command: Stderr from the command: find: 'vagrant' is not the name of an existing group Fix this by using --user-group instead of --gid users in the useradd command which creates user vagrant. |
||
|---|---|---|
| .. | ||
| cleanup.sh | ||
| install-base.sh | ||
| install-parallels.sh | ||
| install-virtualbox.sh | ||