hashicorp/vagrant · error

vagrant.virtualbox.warning.shared_folder_symlink_create

Error message

vagrant.virtualbox.warning.shared_folder_symlink_create

What it means

Error "vagrant.virtualbox.warning.shared_folder_symlink_create" thrown in hashicorp/vagrant.

Source

Thrown at plugins/providers/virtualbox/synced_folder.rb:148

              transient: transient,
              SharedFoldersEnableSymlinksCreate: enable_symlink_create,
              automount: !!data[:automount]
            }
          end
        end

        if warn_user_symlink
          display_symlink_create_warning(machine.env)
        end

        driver(machine).share_folders(defs)
      end

      def display_symlink_create_warning(env)
        d_file = env.data_dir.join("vbox_symlink_create_warning")
        if !d_file.exist?
          FileUtils.touch(d_file.to_path)
          env.ui.warn(I18n.t("vagrant.virtualbox.warning.shared_folder_symlink_create"))
        end
      end
    end
  end
end

View on GitHub (pinned to 35f3160f4a)

When it happens

Trigger: Thrown at plugins/providers/virtualbox/synced_folder.rb:148 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of hashicorp/vagrant@35f3160f4a (2026-08-21). Data as JSON: /api/errors/c55d180c79d34d89. Report an issue: GitHub.