Sha256: 1c49ba8b580f95870a6a11c47667f215fd0b118d0e8e7453aecb56740ca40d9f

Contents?: true

Size: 1.34 KB

Versions: 25

Compression:

Stored size: 1.34 KB

Contents

function Test-ReparsePoint([string]$path) {
  $file = Get-Item $path -Force -ea 0
  return [bool]($file.Attributes -band [IO.FileAttributes]::ReparsePoint)
}

$MountPoint = [System.IO.Path]::GetFullPath("<%= options[:mount_point] %>")
$ShareName = "<%= options[:share_name] %>"
$VmProviderUncPath = "<%= options[:vm_provider_unc_path] %>"

# https://github.com/BIAINC/vagrant-windows/issues/4
# Not sure why this works, but it does.

& net use $ShareName 2>&1 | Out-Null

Write-Debug "Attempting to mount $ShareName to $MountPoint"
if( (Test-Path "$MountPoint") -and (Test-ReparsePoint "$MountPoint") )
{
  Write-Debug "Junction already exists, so I will delete it"
  # Powershell refuses to delete junctions, oh well use cmd
  cmd /c rd "$MountPoint"

  if ( $LASTEXITCODE -ne 0 )
  {
    Write-Error "Failed to delete symbolic link at $MountPoint"
    exit 1
  }

}
elseif(Test-Path $MountPoint)
{
  Write-Error "Mount point already exists and is not a symbolic link"
  exit 1
}

$BaseDirectory = [System.IO.Path]::GetDirectoryName($MountPoint)

if (-not (Test-Path $BaseDirectory))
{
  Write-Debug "Creating parent directory for mount point $BaseDirectory"
  New-Item $BaseDirectory -Type Directory -Force | Out-Null
}

cmd /c mklink /D "$MountPoint" "$VmProviderUncPath" | out-null

if ( $LASTEXITCODE -ne 0 )
{
  exit 1
}

Version data entries

25 entries across 21 versions & 4 rubygems

Version Path
vagrant-unbundled-2.1.2.0 plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-unbundled-2.1.1.0 plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-unbundled-2.0.4.0 plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-unbundled-2.0.3.0 plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-aws-detiber-0.7.2.pre.4 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-aws-detiber-0.7.2.pre.3 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-aws-detiber-0.7.2.pre.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-unbundled-2.0.2.0 plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-unbundled-2.0.1.0 plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-aws-mkubenka-0.7.2.pre.22 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-f3fdbf414272/plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-aws-mkubenka-0.7.2.pre.16 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-1ee58c40e3f5/plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-unbundled-2.0.0.1 plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-unbundled-1.9.8.1 plugins/guests/windows/scripts/mount_volume.ps1.erb
vagrant-unbundled-1.9.7.1 plugins/guests/windows/scripts/mount_volume.ps1.erb