-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
running vagrant up from inside your repo was complaining about "path', this fixed it:
pathfor shell provisioner does not exist on the host system: /root/vagrant/lab/ConfigureRemotingForAnsible.ps1
diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile
index 7ccba87..cd68ecf 100644
--- a/vagrant/Vagrantfile
+++ b/vagrant/Vagrantfile
@@ -34,6 +34,6 @@ Vagrant.configure("2") do |config|
workstationBsides.vm.network :forwarded_port, guest: 5985, host: 45985, id: "winrm"
workstationBsides.vm.network :forwarded_port, guest: 3389, host: 43389, id: "msrdp"
end
- config.vm.provision "shell", path:"/root/vagrant/lab/ConfigureRemotingForAnsible.ps1"
+ config.vm.provision "shell", path:"ConfigureRemotingForAnsible.ps1"
endMetadata
Metadata
Assignees
Labels
No labels