Skip to content

Commit

Permalink
Add SafeNet token usbfilter to Windows VM config
Browse files Browse the repository at this point in the history
  • Loading branch information
crwood committed Sep 9, 2021
1 parent 2074c08 commit fefd1bd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Vagrantfile
Expand Up @@ -193,6 +193,16 @@ Vagrant.configure("2") do |config|

config.vm.define "windows-10" do |b|
b.vm.box = "gusztavvargadr/windows-10"
b.vm.provider "virtualbox" do |vb|
vb.customize ['modifyvm', :id, '--usb', 'on']
vb.customize ['usbfilter', 'add', '0',
'--target', :id,
'--name', "SafeNet Token JC [0001]",
'--manufacturer', "SafeNet",
'--vendorid', "0x0529",
'--productid', "0x0620",
'--product', "Token JC"]
end
b.vm.synced_folder ".", "/Users/vagrant/vagrant"
b.vm.provision "devtools", type: "shell", run: "never", path: "scripts/provision_devtools.bat"
b.vm.provision "test", type: "shell", run: "never", inline: test_windows
Expand Down

0 comments on commit fefd1bd

Please sign in to comment.