Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error Launching via Python on Windows #280

Open
BAMRED opened this issue Oct 16, 2024 · 8 comments
Open

Error Launching via Python on Windows #280

BAMRED opened this issue Oct 16, 2024 · 8 comments

Comments

@BAMRED
Copy link

BAMRED commented Oct 16, 2024

I keep getting the following error when trying to launch on windows host (I was having issues with ansible on linux and VM on Windows)

 py goad.py -m vm
Traceback (most recent call last):
  File "D:\GOAD\goad.py", line 5, in <module>
    from goad.config import Config
  File "D:\GOAD\goad\config.py", line 4, in <module>
    from goad.log import Log
  File "D:\GOAD\goad\log.py", line 1, in <module>
    from rich import print
ModuleNotFoundError: No module named 'rich'

goad.py

import cmd
import argparse
import sys
import time
from goad.config import Config
from goad.log import Log
from goad.exceptions import JumpBoxInitFailed
from goad.menu import print_menu, print_logo
from goad.infos import *

log.py

from rich import print

from goad.utils import *

config.py

import configparser
from goad.goadpath import GoadPath
from goad.utils import *
from goad.log import Log
from goad.dependencies import Dependencies

noansible_requirements.yml installed and checked.
Python 3.12.4
Plugins installed (vagrant-reload vagrant-vbguest winrm winrm-fs winrm-elevated)
visual c++ 2019 updated

For reference, issues running ansible on linux host #59 (comment)

@Mayfly277
Copy link
Collaborator

ModuleNotFoundError: No module named 'rich' means your python doesn't have rich installed.
can you re-try : pip install -r noansible_requirements.yml
can you verify your python module list ? pip list and be sure rich is in it ?

Also verify is pip is linked to the same version of your python py version ?
py --version
pip --version

The requirement file already got rich so i don't see anything i could fix. i guess the bug is on your side unless i missed something.
image

@BAMRED
Copy link
Author

BAMRED commented Oct 17, 2024

I force upgraded python and pip and they are both on 3.12, re-ran the requirements and ensured rich was installed, this works to allow me to access the console. Progress!
I have been trying to follow along with the guide https://orange-cyberdefense.github.io/GOAD/installation/

However, I did end up with this error:

GOAD/virtualbox/local/192.168.56.X > install 1527f5-goad-virtualbox
[+] Current Settings
[*] Current Lab         : GOAD
[*] Current Provider    : virtualbox
[*] Current Provisioner : local
[*] Current IP range    : 192.168.56.X
[*] Extension(s)        :

Create lab with theses settings ? (y/N)y
[*] Create instance folder
[*] Create instance providing files
[*] Instance vagrantfile created : \workspace\e408eb-goad-virtualbox\provider\Vagrantfile
[*] Create lab provisioning file inventory_disable_vagrant
[+] Lab inventory file created : \workspace\e408eb-goad-virtualbox\inventory_disable_vagrant
[*] Create instance provisioning files
[+] Instance inventory file created : \workspace\e408eb-goad-virtualbox\inventory
[*] Create instance extensions inventory files
[*] Instance e408eb-goad-virtualbox created
[-] instance provisioner does not exist
┏━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Instance ID              ┃ Lab  ┃ Provider   ┃ IP Range        ┃ Status       ┃ Is Default ┃ Extensions ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ > e408eb-goad-virtualbox │ GOAD │ virtualbox │ 192.168.56.0/24 │ not provided │ No         │            │
└──────────────────────────┴──────┴────────────┴─────────────────┴──────────────┴────────────┴────────────┘
[*] Launch providing
Traceback (most recent call last):
  File "D:\GOAD\goad.py", line 477, in <module>
    goad.cmdloop()
  File "C:\Users\XXXXX\AppData\Local\Programs\Python\Python312\Lib\cmd.py", line 138, in cmdloop
    stop = self.onecmd(line)
           ^^^^^^^^^^^^^^^^^
  File "C:\Users\XXXXX\AppData\Local\Programs\Python\Python312\Lib\cmd.py", line 217, in onecmd
    return func(arg)
           ^^^^^^^^^
  File "D:\GOAD\goad.py", line 67, in do_install
    self.do_create()
  File "D:\GOAD\goad.py", line 338, in do_create
    self.do_provide()
  File "D:\GOAD\goad.py", line 103, in do_provide
    result = self.lab_manager.get_current_instance_provider().install()
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'install'

It generates the vagrantfile and I can get the VMs up with vagrant up but I cannot provision them.

GOAD/virtualbox/local/192.168.56.X > load e408eb-goad-virtualbox
[-] instance provisioner does not exist

Line 102-117 for reference

def do_provide(self, arg=''):
        result = self.lab_manager.get_current_instance_provider().install()
        if result:
            self.lab_manager.get_current_instance().set_status(PROVIDED)
            # if ip range change after provisioning
            if self.lab_manager.get_current_instance_provider().update_ip_range:
                Log.info('Update IP range')
                new_range = self.lab_manager.get_current_instance_provider().get_ip_range()
                if new_range is not None:
                    Log.info(f'new range : {new_range}')
                    self.lab_manager.get_current_instance().update_ip_range(new_range)
                    Log.info(f'reload instance')
                    # reload instance
                    instance_id = self.lab_manager.get_current_instance_id()
                    self.do_load(instance_id)
                    self.refresh_prompt()

Just to add, I am very impressed with the change to V3, it is clear that you have put a lot of work into this.

@Mayfly277
Copy link
Collaborator

Ok i didn't manage the fact that you use the wrong provisioning method, i will change that.
The local method is not available on windows because ansible can't be run locally on windows.

Please use the provisionning method vm with your config :
Like describe in the doc with python on windows : https://orange-cyberdefense.github.io/GOAD/installation/windows/#__tabbed_2_2

py goad.py -m vm

or in goad interactive prompt do set_provisioning_method vm

@BAMRED
Copy link
Author

BAMRED commented Oct 18, 2024

I wiped all workspaces and set up with VM method for VirtualBox, all 6 VMs start but the following error occurs

[*] Prepare jumpbox if needed
[*] Launch scp D:\GOAD\scripts\setup_local_jumpbox.sh -> [email protected]:~/setup.sh
[*] CWD: \workspace\ee2b50-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i not found D:\GOAD\scripts\setup_local_jumpbox.sh
[email protected]:~/setup.sh
scp: stat local "found": No such file or directory
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && sudo apt update &&
sudo apt install -y dos2unix"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && dos2unix setup.sh"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && bash setup.sh"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && mkdir -p
~/GOAD/workspace/ee2b50-goad-virtualbox"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] Launch scp D:\GOAD\workspace\ee2b50-goad-virtualbox\instance.json ->
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/instance.json
[*] CWD: \workspace\ee2b50-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i not found
D:\GOAD\workspace\ee2b50-goad-virtualbox\instance.json
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/instance.json
scp: stat local "found": No such file or directory
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && dos2unix
~/GOAD/workspace/ee2b50-goad-virtualbox/instance.json"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] Launch scp D:\GOAD\workspace\ee2b50-goad-virtualbox\inventory ->
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/inventory
[*] CWD: \workspace\ee2b50-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i not found D:\GOAD\workspace\ee2b50-goad-virtualbox\inventory
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/inventory
scp: stat local "found": No such file or directory
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && dos2unix
~/GOAD/workspace/ee2b50-goad-virtualbox/inventory"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] Launch scp D:\GOAD\workspace\ee2b50-goad-virtualbox\inventory_disable_vagrant ->
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/inventory_disable_vagrant
[*] CWD: \workspace\ee2b50-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i not found
D:\GOAD\workspace\ee2b50-goad-virtualbox\inventory_disable_vagrant
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/inventory_disable_vagrant
scp: stat local "found": No such file or directory
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && dos2unix
~/GOAD/workspace/ee2b50-goad-virtualbox/inventory_disable_vagrant"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] Launch provisioning
[*] Loading inventory
[+] Lab inventory : D:\GOAD\ad\GOAD\data\inventory file found
[+] Provider inventory : D:\GOAD\workspace\ee2b50-goad-virtualbox\inventory file found
[+] Global inventory : D:\GOAD\globalsettings.ini file found
[*] Loading playbook list
[+] build.yml file found
[+] ad-servers.yml file found
[+] ad-parent_domain.yml file found
[+] ad-child_domain.yml file found
[+] wait5m.yml file found
[+] ad-members.yml file found
[+] ad-trusts.yml file found
[+] ad-data.yml file found
[+] ad-gmsa.yml file found
[+] laps.yml file found
[+] ad-relations.yml file found
[+] adcs.yml file found
[+] ad-acl.yml file found
[+] servers.yml file found
[+] security.yml file found
[+] vulnerabilities.yml file found
[*] Run playbook : build.yml with inventory file(s) : /home/vagrant/GOAD/ad/GOAD/data/inventory,
/home/vagrant/GOAD/workspace/ee2b50-goad-virtualbox/inventory, /home/vagrant/GOAD/globalsettings.ini
[*] Running command : command
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd
/home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i /home/vagrant/GOAD/ad/GOAD/data/inventory -i
/home/vagrant/GOAD/workspace/ee2b50-goad-virtualbox/inventory -i /home/vagrant/GOAD/globalsettings.ini build.yml"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd
/home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i /home/vagrant/GOAD/ad/GOAD/data/inventory -i
/home/vagrant/GOAD/workspace/ee2b50-goad-virtualbox/inventory -i /home/vagrant/GOAD/globalsettings.ini build.yml"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd
/home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i /home/vagrant/GOAD/ad/GOAD/data/inventory -i
/home/vagrant/GOAD/workspace/ee2b50-goad-virtualbox/inventory -i /home/vagrant/GOAD/globalsettings.ini build.yml"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd
/home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i /home/vagrant/GOAD/ad/GOAD/data/inventory -i
/home/vagrant/GOAD/workspace/ee2b50-goad-virtualbox/inventory -i /home/vagrant/GOAD/globalsettings.ini build.yml"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[-] 3 fails abort.
[-] Something wrong during the provisioning task : build.yml

GOAD-DC01                 running (virtualbox)
GOAD-DC02                 running (virtualbox)
GOAD-DC03                 running (virtualbox)
GOAD-SRV02                running (virtualbox)
GOAD-SRV03                running (virtualbox)
PROVISIONING              running (VirtualBox)

@Mayfly277
Copy link
Collaborator

Mayfly277 commented Oct 18, 2024

Hum weird, vagrant should have created a private key in workspace<workspaceid>\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key but in your capture there is "not found", so the key wasn't created.
is the PROVISIONING vm was well created and running ?

may be you can delete the vm provisionning then :

> load <instance_id>
> provide
# here check if the vm PROVISIONING is well up and running
# here check, a file should exist in workspace\<workspaceid>\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key ?
> prepare_jumpbox
> provision_lab

@BAMRED
Copy link
Author

BAMRED commented Oct 19, 2024

==> PROVISIONING: Checking if box 'bento/ubuntu-22.04' version '202407.23.0' is up to date...
==> PROVISIONING: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> PROVISIONING: flag to force provisioning. Provisioners marked to run always will still run.

GOAD/virtualbox/vm/192.168.56.X (ee2b50-goad-virtualbox) > prepare_jumpbox
[*] Launch scp D:\GOAD\scripts\setup_local_jumpbox.sh -> [email protected]:~/setup.sh
[*] CWD: \workspace\ee2b50-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i not found D:\GOAD\scripts\setup_local_jumpbox.sh
[email protected]:~/setup.sh
scp: stat local "found": No such file or directory
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && sudo apt
update && sudo apt install -y dos2unix"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && dos2unix
setup.sh"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && bash
setup.sh"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && mkdir -p
~/GOAD/workspace/ee2b50-goad-virtualbox"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] Launch scp D:\GOAD\workspace\ee2b50-goad-virtualbox\instance.json ->
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/instance.json
[*] CWD: \workspace\ee2b50-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i not found
D:\GOAD\workspace\ee2b50-goad-virtualbox\instance.json
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/instance.json
scp: stat local "found": No such file or directory
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && dos2unix
~/GOAD/workspace/ee2b50-goad-virtualbox/instance.json"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] Launch scp D:\GOAD\workspace\ee2b50-goad-virtualbox\inventory ->
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/inventory
[*] CWD: \workspace\ee2b50-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i not found
D:\GOAD\workspace\ee2b50-goad-virtualbox\inventory
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/inventory
scp: stat local "found": No such file or directory
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && dos2unix
~/GOAD/workspace/ee2b50-goad-virtualbox/inventory"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] Launch scp D:\GOAD\workspace\ee2b50-goad-virtualbox\inventory_disable_vagrant ->
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/inventory_disable_vagrant
[*] CWD: \workspace\ee2b50-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i not found
D:\GOAD\workspace\ee2b50-goad-virtualbox\inventory_disable_vagrant
[email protected]:~/GOAD/workspace/ee2b50-goad-virtualbox/inventory_disable_vagrant
scp: stat local "found": No such file or directory
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd ~ && dos2unix
~/GOAD/workspace/ee2b50-goad-virtualbox/inventory_disable_vagrant"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.

GOAD/virtualbox/vm/192.168.56.X (ee2b50-goad-virtualbox) > provision_lab
[*] Loading inventory
[+] Lab inventory : D:\GOAD\ad\GOAD\data\inventory file found
[+] Provider inventory : D:\GOAD\workspace\ee2b50-goad-virtualbox\inventory file found
[+] Global inventory : D:\GOAD\globalsettings.ini file found
[*] Loading playbook list
[+] build.yml file found
[+] ad-servers.yml file found
[+] ad-parent_domain.yml file found
[+] ad-child_domain.yml file found
[+] wait5m.yml file found
[+] ad-members.yml file found
[+] ad-trusts.yml file found
[+] ad-data.yml file found
[+] ad-gmsa.yml file found
[+] laps.yml file found
[+] ad-relations.yml file found
[+] adcs.yml file found
[+] ad-acl.yml file found
[+] servers.yml file found
[+] security.yml file found
[+] vulnerabilities.yml file found
[*] Run playbook : build.yml with inventory file(s) : /home/vagrant/GOAD/ad/GOAD/data/inventory,
/home/vagrant/GOAD/workspace/ee2b50-goad-virtualbox/inventory, /home/vagrant/GOAD/globalsettings.ini
[*] Running command : command
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd
/home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/ee2b50-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd
/home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/ee2b50-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd
/home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/ee2b50-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i not found [email protected] "cd
/home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/ee2b50-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
Warning: Identity file not not accessible: No such file or directory.
ssh: Could not resolve hostname found: No such host is known.
[-] 3 fails abort.
[-] Something wrong during the provisioning task : build.yml

The private key file exists and there is a key generated within the begin and end

 PROVISIONING: Importing base box 'bento/ubuntu-22.04'...
==> PROVISIONING: Matching MAC address for NAT networking...
==> PROVISIONING: Checking if box 'bento/ubuntu-22.04' version '202407.23.0' is up to date...
==> PROVISIONING: Setting the name of the VM: PROVISIONING
==> PROVISIONING: Fixed port collision for 22 => 2222. Now on port 2212.
==> PROVISIONING: Clearing any previously set network interfaces...
==> PROVISIONING: Preparing network interfaces based on configuration...
    PROVISIONING: Adapter 1: nat
    PROVISIONING: Adapter 2: hostonly
==> PROVISIONING: Forwarding ports...
    PROVISIONING: 22 (guest) => 2212 (host) (adapter 1)
==> PROVISIONING: Running 'pre-boot' VM customizations...
==> PROVISIONING: Booting VM...
==> PROVISIONING: Waiting for machine to boot. This may take a few minutes...
    PROVISIONING: SSH address: 127.0.0.1:2212
    PROVISIONING: SSH username: vagrant
    PROVISIONING: SSH auth method: private key
    PROVISIONING: Warning: Connection reset. Retrying...
    PROVISIONING: Warning: Connection aborted. Retrying...
    PROVISIONING: Warning: Connection aborted. Retrying...
    PROVISIONING: Warning: Connection reset. Retrying...
    PROVISIONING: Warning: Connection aborted. Retrying...
    PROVISIONING: Warning: Connection reset. Retrying...
    PROVISIONING:
    PROVISIONING: Vagrant insecure key detected. Vagrant will automatically replace
    PROVISIONING: this with a newly generated keypair for better security.
    PROVISIONING:
    PROVISIONING: Inserting generated public key within guest...
    PROVISIONING: Removing insecure key from the guest if it's present...
    PROVISIONING: Key inserted! Disconnecting and reconnecting using new SSH key...
==> PROVISIONING: Machine booted and ready!

@Mayfly277
Copy link
Collaborator

can you try again and give me the error ?

@BAMRED
Copy link
Author

BAMRED commented Oct 23, 2024

Deleted all files, fresh clone and install, ran requirements etc.
image
image

GOAD/virtualbox/vm/192.168.56.X > install 3a2bff-goad-virtualbox
[*] Launch providing
[*] CWD: \workspace\3a2bff-goad-virtualbox\provider
[*] Running command : vagrant.exe up
Bringing machine 'GOAD-DC01' up with 'virtualbox' provider...
Bringing machine 'GOAD-DC02' up with 'virtualbox' provider...
Bringing machine 'GOAD-DC03' up with 'virtualbox' provider...
Bringing machine 'GOAD-SRV02' up with 'virtualbox' provider...
Bringing machine 'GOAD-SRV03' up with 'virtualbox' provider...
Bringing machine 'PROVISIONING' up with 'virtualbox' provider...
==> GOAD-DC01: Checking if box 'StefanScherer/windows_2019' version '2021.05.15' is up to date...
==> GOAD-DC01: Running provisioner: shell...
    GOAD-DC01: Running: ../../../vagrant/Install-WMF3Hotfix.ps1 as C:\tmp\vagrant-shell.ps1
==> GOAD-DC01: Running provisioner: shell...
    GOAD-DC01: Running: ../../../vagrant/ConfigureRemotingForAnsible.ps1 as C:\tmp\vagrant-shell.ps1
    GOAD-DC01: Self-signed SSL certificate generated; thumbprint: 566EFAC2A34245CF4E844572F16146260C8E66F1
    GOAD-DC01:
    GOAD-DC01:
    GOAD-DC01: wxf                 : http://schemas.xmlsoap.org/ws/2004/09/transfer
    GOAD-DC01: a                   : http://schemas.xmlsoap.org/ws/2004/08/addressing
    GOAD-DC01: w                   : http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd
    GOAD-DC01: lang                : en-US
    GOAD-DC01: Address             : http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous
    GOAD-DC01: ReferenceParameters : ReferenceParameters
    GOAD-DC01:
    GOAD-DC01: Ok.
    GOAD-DC01:
    GOAD-DC01:
    GOAD-DC01:
==> GOAD-DC02: Importing base box 'StefanScherer/windows_2019'...
==> GOAD-DC02: Matching MAC address for NAT networking...
==> GOAD-DC02: Checking if box 'StefanScherer/windows_2019' version '2021.05.15' is up to date...
==> GOAD-DC02: Setting the name of the VM: GOAD-DC02
==> GOAD-DC02: Fixed port collision for 5985 => 55985. Now on port 2200.
==> GOAD-DC02: Fixed port collision for 5986 => 55986. Now on port 2201.
==> GOAD-DC02: Fixed port collision for 22 => 2222. Now on port 2202.
==> GOAD-DC02: Clearing any previously set network interfaces...
==> GOAD-DC02: Preparing network interfaces based on configuration...
    GOAD-DC02: Adapter 1: nat
    GOAD-DC02: Adapter 2: hostonly
==> GOAD-DC02: Forwarding ports...
    GOAD-DC02: 5985 (guest) => 2200 (host) (adapter 1)
    GOAD-DC02: 5986 (guest) => 2201 (host) (adapter 1)
    GOAD-DC02: 22 (guest) => 2202 (host) (adapter 1)
==> GOAD-DC02: Running 'pre-boot' VM customizations...
==> GOAD-DC02: Booting VM...
==> GOAD-DC02: Waiting for machine to boot. This may take a few minutes...
    GOAD-DC02: WinRM address: 127.0.0.1:2200
    GOAD-DC02: WinRM username: vagrant
    GOAD-DC02: WinRM execution_time_limit: PT2H
    GOAD-DC02: WinRM transport: negotiate
==> GOAD-DC02: Machine booted and ready!
==> GOAD-DC02: Checking for guest additions in VM...
    GOAD-DC02: The guest additions on this VM do not match the installed version of
    GOAD-DC02: VirtualBox! In most cases this is fine, but in rare cases it can
    GOAD-DC02: prevent things such as shared folders from working properly. If you see
    GOAD-DC02: shared folder errors, please make sure the guest additions within the
    GOAD-DC02: virtual machine match the version of VirtualBox you have installed on
    GOAD-DC02: your host and reload your VM.
    GOAD-DC02:
    GOAD-DC02: Guest Additions Version: 6.1.22
    GOAD-DC02: VirtualBox Version: 7.0
==> GOAD-DC02: Configuring and enabling network interfaces...
==> GOAD-DC02: Running provisioner: shell...
    GOAD-DC02: Running: ../../../vagrant/Install-WMF3Hotfix.ps1 as C:\tmp\vagrant-shell.ps1
==> GOAD-DC02: Running provisioner: shell...
    GOAD-DC02: Running: ../../../vagrant/ConfigureRemotingForAnsible.ps1 as C:\tmp\vagrant-shell.ps1
    GOAD-DC02: Self-signed SSL certificate generated; thumbprint: 94A7AB2A90A97222FABB3F520F007224E4D9CDF0
    GOAD-DC02:
    GOAD-DC02:
    GOAD-DC02: wxf                 : http://schemas.xmlsoap.org/ws/2004/09/transfer
    GOAD-DC02: a                   : http://schemas.xmlsoap.org/ws/2004/08/addressing
    GOAD-DC02: w                   : http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd
    GOAD-DC02: lang                : en-US
    GOAD-DC02: Address             : http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous
    GOAD-DC02: ReferenceParameters : ReferenceParameters
    GOAD-DC02:
    GOAD-DC02: Ok.
    GOAD-DC02:
    GOAD-DC02:
    GOAD-DC02:
==> GOAD-DC03: Box 'StefanScherer/windows_2016' could not be found. Attempting to find and install...
    GOAD-DC03: Box Provider: virtualbox
    GOAD-DC03: Box Version: 2017.12.14
==> GOAD-DC03: Loading metadata for box 'StefanScherer/windows_2016'
    GOAD-DC03: URL: https://vagrantcloud.com/api/v2/vagrant/StefanScherer/windows_2016
==> GOAD-DC03: Adding box 'StefanScherer/windows_2016' (v2017.12.14) for provider: virtualbox
    GOAD-DC03: Downloading: https://vagrantcloud.com/StefanScherer/boxes/windows_2016/versions/2017.12.14/providers/virtualbox/unknown/vagrant.box
    GOAD-DC03:
==> GOAD-DC03: Successfully added box 'StefanScherer/windows_2016' (v2017.12.14) for 'virtualbox'!
==> GOAD-DC03: Importing base box 'StefanScherer/windows_2016'...
==> GOAD-DC03: Matching MAC address for NAT networking...
==> GOAD-DC03: Checking if box 'StefanScherer/windows_2016' version '2017.12.14' is up to date...
==> GOAD-DC03: Setting the name of the VM: GOAD-DC03
==> GOAD-DC03: Fixed port collision for 5985 => 55985. Now on port 2203.
==> GOAD-DC03: Fixed port collision for 5986 => 55986. Now on port 2204.
==> GOAD-DC03: Fixed port collision for 22 => 2222. Now on port 2205.
==> GOAD-DC03: Clearing any previously set network interfaces...
==> GOAD-DC03: Preparing network interfaces based on configuration...
    GOAD-DC03: Adapter 1: nat
    GOAD-DC03: Adapter 2: hostonly
==> GOAD-DC03: Forwarding ports...
    GOAD-DC03: 5985 (guest) => 2203 (host) (adapter 1)
    GOAD-DC03: 5986 (guest) => 2204 (host) (adapter 1)
    GOAD-DC03: 22 (guest) => 2205 (host) (adapter 1)
==> GOAD-DC03: Running 'pre-boot' VM customizations...
==> GOAD-DC03: Booting VM...
==> GOAD-DC03: Waiting for machine to boot. This may take a few minutes...
    GOAD-DC03: WinRM address: 127.0.0.1:2203
    GOAD-DC03: WinRM username: vagrant
    GOAD-DC03: WinRM execution_time_limit: PT2H
    GOAD-DC03: WinRM transport: negotiate
==> GOAD-DC03: Machine booted and ready!
==> GOAD-DC03: Checking for guest additions in VM...
    GOAD-DC03: The guest additions on this VM do not match the installed version of
    GOAD-DC03: VirtualBox! In most cases this is fine, but in rare cases it can
    GOAD-DC03: prevent things such as shared folders from working properly. If you see
    GOAD-DC03: shared folder errors, please make sure the guest additions within the
    GOAD-DC03: virtual machine match the version of VirtualBox you have installed on
    GOAD-DC03: your host and reload your VM.
    GOAD-DC03:
    GOAD-DC03: Guest Additions Version: 5.1.30
    GOAD-DC03: VirtualBox Version: 7.0
==> GOAD-DC03: Configuring and enabling network interfaces...
==> GOAD-DC03: Running provisioner: shell...
    GOAD-DC03: Running: ../../../vagrant/Install-WMF3Hotfix.ps1 as C:\tmp\vagrant-shell.ps1
==> GOAD-DC03: Running provisioner: shell...
    GOAD-DC03: Running: ../../../vagrant/ConfigureRemotingForAnsible.ps1 as C:\tmp\vagrant-shell.ps1
    GOAD-DC03: Self-signed SSL certificate generated; thumbprint: F94A0B6647C5C1FD37199A48E1520D3AF67E7238
    GOAD-DC03:
    GOAD-DC03:
    GOAD-DC03: wxf                 : http://schemas.xmlsoap.org/ws/2004/09/transfer
    GOAD-DC03: a                   : http://schemas.xmlsoap.org/ws/2004/08/addressing
    GOAD-DC03: w                   : http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd
    GOAD-DC03: lang                : en-US
    GOAD-DC03: Address             : http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous
    GOAD-DC03: ReferenceParameters : ReferenceParameters
    GOAD-DC03:
    GOAD-DC03: Ok.
    GOAD-DC03:
    GOAD-DC03:
    GOAD-DC03:
==> GOAD-SRV02: Importing base box 'StefanScherer/windows_2019'...
==> GOAD-SRV02: Matching MAC address for NAT networking...
==> GOAD-SRV02: Checking if box 'StefanScherer/windows_2019' version '2021.05.15' is up to date...
==> GOAD-SRV02: Setting the name of the VM: GOAD-SRV02
==> GOAD-SRV02: Fixed port collision for 5985 => 55985. Now on port 2206.
==> GOAD-SRV02: Fixed port collision for 5986 => 55986. Now on port 2207.
==> GOAD-SRV02: Fixed port collision for 22 => 2222. Now on port 2208.
==> GOAD-SRV02: Clearing any previously set network interfaces...
==> GOAD-SRV02: Preparing network interfaces based on configuration...
    GOAD-SRV02: Adapter 1: nat
    GOAD-SRV02: Adapter 2: hostonly
==> GOAD-SRV02: Forwarding ports...
    GOAD-SRV02: 5985 (guest) => 2206 (host) (adapter 1)
    GOAD-SRV02: 5986 (guest) => 2207 (host) (adapter 1)
    GOAD-SRV02: 22 (guest) => 2208 (host) (adapter 1)
==> GOAD-SRV02: Running 'pre-boot' VM customizations...
==> GOAD-SRV02: Booting VM...
==> GOAD-SRV02: Waiting for machine to boot. This may take a few minutes...
    GOAD-SRV02: WinRM address: 127.0.0.1:2206
    GOAD-SRV02: WinRM username: vagrant
    GOAD-SRV02: WinRM execution_time_limit: PT2H
    GOAD-SRV02: WinRM transport: negotiate
==> GOAD-SRV02: Machine booted and ready!
==> GOAD-SRV02: Checking for guest additions in VM...
    GOAD-SRV02: The guest additions on this VM do not match the installed version of
    GOAD-SRV02: VirtualBox! In most cases this is fine, but in rare cases it can
    GOAD-SRV02: prevent things such as shared folders from working properly. If you see
    GOAD-SRV02: shared folder errors, please make sure the guest additions within the
    GOAD-SRV02: virtual machine match the version of VirtualBox you have installed on
    GOAD-SRV02: your host and reload your VM.
    GOAD-SRV02:
    GOAD-SRV02: Guest Additions Version: 6.1.22
    GOAD-SRV02: VirtualBox Version: 7.0
==> GOAD-SRV02: Configuring and enabling network interfaces...
==> GOAD-SRV02: Running provisioner: shell...
    GOAD-SRV02: Running: ../../../vagrant/Install-WMF3Hotfix.ps1 as C:\tmp\vagrant-shell.ps1
==> GOAD-SRV02: Running provisioner: shell...
    GOAD-SRV02: Running: ../../../vagrant/ConfigureRemotingForAnsible.ps1 as C:\tmp\vagrant-shell.ps1
    GOAD-SRV02: Self-signed SSL certificate generated; thumbprint: 6F8A45AFC2A6909B8005AD5D35BA180F3B8D0AF6
    GOAD-SRV02:
    GOAD-SRV02:
    GOAD-SRV02: wxf                 : http://schemas.xmlsoap.org/ws/2004/09/transfer
    GOAD-SRV02: a                   : http://schemas.xmlsoap.org/ws/2004/08/addressing
    GOAD-SRV02: w                   : http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd
    GOAD-SRV02: lang                : en-US
    GOAD-SRV02: Address             : http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous
    GOAD-SRV02: ReferenceParameters : ReferenceParameters
    GOAD-SRV02:
    GOAD-SRV02: Ok.
    GOAD-SRV02:
    GOAD-SRV02:
    GOAD-SRV02:
==> GOAD-SRV03: Box 'StefanScherer/windows_2016' could not be found. Attempting to find and install...
    GOAD-SRV03: Box Provider: virtualbox
    GOAD-SRV03: Box Version: 2019.02.14
==> GOAD-SRV03: Loading metadata for box 'StefanScherer/windows_2016'
    GOAD-SRV03: URL: https://vagrantcloud.com/api/v2/vagrant/StefanScherer/windows_2016
==> GOAD-SRV03: Adding box 'StefanScherer/windows_2016' (v2019.02.14) for provider: virtualbox
    GOAD-SRV03: Downloading: https://vagrantcloud.com/StefanScherer/boxes/windows_2016/versions/2019.02.14/providers/virtualbox/unknown/vagrant.box
    GOAD-SRV03:
==> GOAD-SRV03: Successfully added box 'StefanScherer/windows_2016' (v2019.02.14) for 'virtualbox'!
==> GOAD-SRV03: Importing base box 'StefanScherer/windows_2016'...
==> GOAD-SRV03: Matching MAC address for NAT networking...
==> GOAD-SRV03: Checking if box 'StefanScherer/windows_2016' version '2019.02.14' is up to date...
==> GOAD-SRV03: Setting the name of the VM: GOAD-SRV03
==> GOAD-SRV03: Fixed port collision for 5985 => 55985. Now on port 2209.
==> GOAD-SRV03: Fixed port collision for 5986 => 55986. Now on port 2210.
==> GOAD-SRV03: Fixed port collision for 22 => 2222. Now on port 2211.
==> GOAD-SRV03: Clearing any previously set network interfaces...
==> GOAD-SRV03: Preparing network interfaces based on configuration...
    GOAD-SRV03: Adapter 1: nat
    GOAD-SRV03: Adapter 2: hostonly
==> GOAD-SRV03: Forwarding ports...
    GOAD-SRV03: 5985 (guest) => 2209 (host) (adapter 1)
    GOAD-SRV03: 5986 (guest) => 2210 (host) (adapter 1)
    GOAD-SRV03: 22 (guest) => 2211 (host) (adapter 1)
==> GOAD-SRV03: Running 'pre-boot' VM customizations...
==> GOAD-SRV03: Booting VM...
==> GOAD-SRV03: Waiting for machine to boot. This may take a few minutes...
    GOAD-SRV03: WinRM address: 127.0.0.1:2209
    GOAD-SRV03: WinRM username: vagrant
    GOAD-SRV03: WinRM execution_time_limit: PT2H
    GOAD-SRV03: WinRM transport: negotiate
==> GOAD-SRV03: Machine booted and ready!
==> GOAD-SRV03: Checking for guest additions in VM...
    GOAD-SRV03: The guest additions on this VM do not match the installed version of
    GOAD-SRV03: VirtualBox! In most cases this is fine, but in rare cases it can
    GOAD-SRV03: prevent things such as shared folders from working properly. If you see
    GOAD-SRV03: shared folder errors, please make sure the guest additions within the
    GOAD-SRV03: virtual machine match the version of VirtualBox you have installed on
    GOAD-SRV03: your host and reload your VM.
    GOAD-SRV03:
    GOAD-SRV03: Guest Additions Version: 5.2.26
    GOAD-SRV03: VirtualBox Version: 7.0
==> GOAD-SRV03: Configuring and enabling network interfaces...
==> GOAD-SRV03: Running provisioner: shell...
    GOAD-SRV03: Running: ../../../vagrant/Install-WMF3Hotfix.ps1 as C:\tmp\vagrant-shell.ps1
==> GOAD-SRV03: Running provisioner: shell...
    GOAD-SRV03: Running: ../../../vagrant/ConfigureRemotingForAnsible.ps1 as C:\tmp\vagrant-shell.ps1
    GOAD-SRV03: Self-signed SSL certificate generated; thumbprint: 76E95D7FBDBD5D2E51CEE2688DFF218C6716F1EC
    GOAD-SRV03:
    GOAD-SRV03:
    GOAD-SRV03: wxf                 : http://schemas.xmlsoap.org/ws/2004/09/transfer
    GOAD-SRV03: a                   : http://schemas.xmlsoap.org/ws/2004/08/addressing
    GOAD-SRV03: w                   : http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd
    GOAD-SRV03: lang                : en-US
    GOAD-SRV03: Address             : http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous
    GOAD-SRV03: ReferenceParameters : ReferenceParameters
    GOAD-SRV03:
    GOAD-SRV03: Ok.
    GOAD-SRV03:
    GOAD-SRV03:
    GOAD-SRV03:
==> PROVISIONING: Box 'bento/ubuntu-22.04' could not be found. Attempting to find and install...
    PROVISIONING: Box Provider: virtualbox
    PROVISIONING: Box Version: >= 0
==> PROVISIONING: Loading metadata for box 'bento/ubuntu-22.04'
    PROVISIONING: URL: https://vagrantcloud.com/api/v2/vagrant/bento/ubuntu-22.04
==> PROVISIONING: Adding box 'bento/ubuntu-22.04' (v202407.23.0) for provider: virtualbox (amd64)
    PROVISIONING: Downloading: https://vagrantcloud.com/bento/boxes/ubuntu-22.04/versions/202407.23.0/providers/virtualbox/amd64/vagrant.box
    PROVISIONING:
==> PROVISIONING: Successfully added box 'bento/ubuntu-22.04' (v202407.23.0) for 'virtualbox (amd64)'!
==> PROVISIONING: Importing base box 'bento/ubuntu-22.04'...
==> PROVISIONING: Matching MAC address for NAT networking...
==> PROVISIONING: Checking if box 'bento/ubuntu-22.04' version '202407.23.0' is up to date...
==> PROVISIONING: Setting the name of the VM: PROVISIONING
==> PROVISIONING: Fixed port collision for 22 => 2222. Now on port 2212.
==> PROVISIONING: Clearing any previously set network interfaces...
==> PROVISIONING: Preparing network interfaces based on configuration...
    PROVISIONING: Adapter 1: nat
    PROVISIONING: Adapter 2: hostonly
==> PROVISIONING: Forwarding ports...
    PROVISIONING: 22 (guest) => 2212 (host) (adapter 1)
==> PROVISIONING: Running 'pre-boot' VM customizations...
==> PROVISIONING: Booting VM...
==> PROVISIONING: Waiting for machine to boot. This may take a few minutes...
    PROVISIONING: SSH address: 127.0.0.1:2212
    PROVISIONING: SSH username: vagrant
    PROVISIONING: SSH auth method: private key
    PROVISIONING: Warning: Connection reset. Retrying...
    PROVISIONING: Warning: Connection aborted. Retrying...
    PROVISIONING: Warning: Connection reset. Retrying...
    PROVISIONING: Warning: Connection aborted. Retrying...
    PROVISIONING: Warning: Connection reset. Retrying...
    PROVISIONING: Warning: Connection aborted. Retrying...
    PROVISIONING:
    PROVISIONING: Vagrant insecure key detected. Vagrant will automatically replace
    PROVISIONING: this with a newly generated keypair for better security.
    PROVISIONING:
    PROVISIONING: Inserting generated public key within guest...
    PROVISIONING: Removing insecure key from the guest if it's present...
    PROVISIONING: Key inserted! Disconnecting and reconnecting using new SSH key...
==> PROVISIONING: Machine booted and ready!
==> PROVISIONING: Checking for guest additions in VM...
==> PROVISIONING: Configuring and enabling network interfaces...
[*] Prepare jumpbox if needed
[*] Launch scp D:\GOAD\scripts\setup_local_jumpbox.sh -> [email protected]:~/setup.sh
[*] CWD: \workspace\3a2bff-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
D:\GOAD\scripts\setup_local_jumpbox.sh [email protected]:~/setup.sh
Warning: Permanently added '192.168.56.3' (ED25519) to the list of known hosts.
setup_local_jumpbox.sh                                                                100%  794   155.1KB/s   00:00
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && sudo apt update && sudo apt install -y dos2unix"
Ign:1 http://security.ubuntu.com/ubuntu jammy-security InRelease
Ign:2 http://us.archive.ubuntu.com/ubuntu jammy InRelease
Ign:3 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease
Ign:1 http://security.ubuntu.com/ubuntu jammy-security InRelease
Ign:4 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease
Ign:1 http://security.ubuntu.com/ubuntu jammy-security InRelease
Ign:2 http://us.archive.ubuntu.com/ubuntu jammy InRelease
Err:1 http://security.ubuntu.com/ubuntu jammy-security InRelease
  Temporary failure resolving 'security.ubuntu.com'
Ign:3 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease
Ign:4 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease
Ign:2 http://us.archive.ubuntu.com/ubuntu jammy InRelease
Ign:3 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease
Ign:4 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease
Err:2 http://us.archive.ubuntu.com/ubuntu jammy InRelease
  Temporary failure resolving 'us.archive.ubuntu.com'
Err:3 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease
  Temporary failure resolving 'us.archive.ubuntu.com'
Err:4 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease
  Temporary failure resolving 'us.archive.ubuntu.com'
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/jammy/InRelease  Temporary failure resolving 'us.archive.ubuntu.com'
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease  Temporary failure resolving 'us.archive.ubuntu.com'
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/jammy-backports/InRelease  Temporary failure resolving 'us.archive.ubuntu.com'
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/jammy-security/InRelease  Temporary failure resolving 'security.ubuntu.com'
W: Some index files failed to download. They have been ignored, or old ones used instead.
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following NEW packages will be installed:
  dos2unix
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 384 kB of archives.
After this operation, 1,367 kB of additional disk space will be used.
Ign:1 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 dos2unix amd64 7.4.2-2
Ign:1 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 dos2unix amd64 7.4.2-2
Ign:1 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 dos2unix amd64 7.4.2-2
Err:1 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 dos2unix amd64 7.4.2-2
  Temporary failure resolving 'us.archive.ubuntu.com'
E: Failed to fetch http://us.archive.ubuntu.com/ubuntu/pool/universe/d/dos2unix/dos2unix_7.4.2-2_amd64.deb  Temporary failure resolving 'us.archive.ubuntu.com'
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && dos2unix setup.sh"
bash: line 1: dos2unix: command not found
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && bash setup.sh"
setup.sh: line 2: $'\r': command not found
E: Invalid operation update
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package git
setup.sh: line 6: $'\r': command not found
setup.sh: line 32: syntax error: unexpected end of file
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && mkdir -p ~/GOAD/workspace/3a2bff-goad-virtualbox"
Connection to 192.168.56.3 closed.
[*] Launch scp D:\GOAD\workspace\3a2bff-goad-virtualbox\instance.json ->
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/instance.json
[*] CWD: \workspace\3a2bff-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
D:\GOAD\workspace\3a2bff-goad-virtualbox\instance.json
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/instance.json
instance.json                                                                         100%  237    46.3KB/s   00:00
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && dos2unix ~/GOAD/workspace/3a2bff-goad-virtualbox/instance.json"
bash: line 1: dos2unix: command not found
Connection to 192.168.56.3 closed.
[*] Launch scp D:\GOAD\workspace\3a2bff-goad-virtualbox\inventory ->
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/inventory
[*] CWD: \workspace\3a2bff-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
D:\GOAD\workspace\3a2bff-goad-virtualbox\inventory
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/inventory
inventory                                                                             100%  805   112.3KB/s   00:00
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && dos2unix ~/GOAD/workspace/3a2bff-goad-virtualbox/inventory"
bash: line 1: dos2unix: command not found
Connection to 192.168.56.3 closed.
[*] Launch scp D:\GOAD\workspace\3a2bff-goad-virtualbox\inventory_disable_vagrant ->
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/inventory_disable_vagrant
[*] CWD: \workspace\3a2bff-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
D:\GOAD\workspace\3a2bff-goad-virtualbox\inventory_disable_vagrant
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/inventory_disable_vagrant
inventory_disable_vagrant                                                             100% 1615   315.4KB/s   00:00
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && dos2unix ~/GOAD/workspace/3a2bff-goad-virtualbox/inventory_disable_vagrant"
bash: line 1: dos2unix: command not found
Connection to 192.168.56.3 closed.
[*] Launch provisioning
[*] Loading inventory
[+] Lab inventory : D:\GOAD\ad\GOAD\data\inventory file found
[+] Provider inventory : D:\GOAD\workspace\3a2bff-goad-virtualbox\inventory file found
[+] Global inventory : D:\GOAD\globalsettings.ini file found
[*] Loading playbook list
[+] build.yml file found
[+] ad-servers.yml file found
[+] ad-parent_domain.yml file found
[+] ad-child_domain.yml file found
[+] wait5m.yml file found
[+] ad-members.yml file found
[+] ad-trusts.yml file found
[+] ad-data.yml file found
[+] ad-gmsa.yml file found
[+] laps.yml file found
[+] ad-relations.yml file found
[+] adcs.yml file found
[+] ad-acl.yml file found
[+] servers.yml file found
[+] security.yml file found
[+] vulnerabilities.yml file found
[*] Run playbook : build.yml with inventory file(s) : /home/vagrant/GOAD/ad/GOAD/data/inventory,
/home/vagrant/GOAD/workspace/3a2bff-goad-virtualbox/inventory, /home/vagrant/GOAD/globalsettings.ini
[*] Running command : command
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd /home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/3a2bff-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
bash: line 1: cd: /home/vagrant/GOAD/ansible/: No such file or directory
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd /home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/3a2bff-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
bash: line 1: cd: /home/vagrant/GOAD/ansible/: No such file or directory
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd /home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/3a2bff-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
bash: line 1: cd: /home/vagrant/GOAD/ansible/: No such file or directory
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd /home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/3a2bff-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
bash: line 1: cd: /home/vagrant/GOAD/ansible/: No such file or directory
Connection to 192.168.56.3 closed.
[-] 3 fails abort.
[-] Something wrong during the provisioning task : build.yml
GOAD/virtualbox/vm/192.168.56.X (3a2bff-goad-virtualbox) > install
[*] Launch providing
[*] CWD: \workspace\3a2bff-goad-virtualbox\provider
[*] Running command : vagrant.exe up
Bringing machine 'GOAD-DC01' up with 'virtualbox' provider...
Bringing machine 'GOAD-DC02' up with 'virtualbox' provider...
Bringing machine 'GOAD-DC03' up with 'virtualbox' provider...
Bringing machine 'GOAD-SRV02' up with 'virtualbox' provider...
Bringing machine 'GOAD-SRV03' up with 'virtualbox' provider...
Bringing machine 'PROVISIONING' up with 'virtualbox' provider...
==> GOAD-DC01: Checking if box 'StefanScherer/windows_2019' version '2021.05.15' is up to date...
==> GOAD-DC01: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> GOAD-DC01: flag to force provisioning. Provisioners marked to run always will still run.
==> GOAD-DC02: Checking if box 'StefanScherer/windows_2019' version '2021.05.15' is up to date...
==> GOAD-DC02: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> GOAD-DC02: flag to force provisioning. Provisioners marked to run always will still run.
==> GOAD-DC03: Checking if box 'StefanScherer/windows_2016' version '2017.12.14' is up to date...
==> GOAD-DC03: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> GOAD-DC03: flag to force provisioning. Provisioners marked to run always will still run.
==> GOAD-SRV02: Checking if box 'StefanScherer/windows_2019' version '2021.05.15' is up to date...
==> GOAD-SRV02: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> GOAD-SRV02: flag to force provisioning. Provisioners marked to run always will still run.
==> GOAD-SRV03: Checking if box 'StefanScherer/windows_2016' version '2019.02.14' is up to date...
==> GOAD-SRV03: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> GOAD-SRV03: flag to force provisioning. Provisioners marked to run always will still run.
==> PROVISIONING: Checking if box 'bento/ubuntu-22.04' version '202407.23.0' is up to date...
==> PROVISIONING: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> PROVISIONING: flag to force provisioning. Provisioners marked to run always will still run.
[*] Prepare jumpbox if needed
[*] Launch scp D:\GOAD\scripts\setup_local_jumpbox.sh -> [email protected]:~/setup.sh
[*] CWD: \workspace\3a2bff-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
D:\GOAD\scripts\setup_local_jumpbox.sh [email protected]:~/setup.sh
setup_local_jumpbox.sh                                                                100%  794   129.2KB/s   00:00
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && sudo apt update && sudo apt install -y dos2unix"
Ign:1 http://us.archive.ubuntu.com/ubuntu jammy InRelease
Ign:2 http://security.ubuntu.com/ubuntu jammy-security InRelease
Ign:3 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease
Ign:2 http://security.ubuntu.com/ubuntu jammy-security InRelease
Ign:4 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease
Ign:2 http://security.ubuntu.com/ubuntu jammy-security InRelease
Ign:1 http://us.archive.ubuntu.com/ubuntu jammy InRelease
Err:2 http://security.ubuntu.com/ubuntu jammy-security InRelease
  Temporary failure resolving 'security.ubuntu.com'
Ign:3 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease
Ign:4 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease
Ign:1 http://us.archive.ubuntu.com/ubuntu jammy InRelease
Ign:3 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease
Ign:4 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease
Err:1 http://us.archive.ubuntu.com/ubuntu jammy InRelease
  Temporary failure resolving 'us.archive.ubuntu.com'
Err:3 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease
  Temporary failure resolving 'us.archive.ubuntu.com'
Err:4 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease
  Temporary failure resolving 'us.archive.ubuntu.com'
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/jammy/InRelease  Temporary failure resolving 'us.archive.ubuntu.com'
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease  Temporary failure resolving 'us.archive.ubuntu.com'
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/jammy-backports/InRelease  Temporary failure resolving 'us.archive.ubuntu.com'
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/jammy-security/InRelease  Temporary failure resolving 'security.ubuntu.com'
W: Some index files failed to download. They have been ignored, or old ones used instead.
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following NEW packages will be installed:
  dos2unix
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 384 kB of archives.
After this operation, 1,367 kB of additional disk space will be used.
Ign:1 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 dos2unix amd64 7.4.2-2
Ign:1 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 dos2unix amd64 7.4.2-2
Ign:1 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 dos2unix amd64 7.4.2-2
Err:1 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 dos2unix amd64 7.4.2-2
  Temporary failure resolving 'us.archive.ubuntu.com'
E: Failed to fetch http://us.archive.ubuntu.com/ubuntu/pool/universe/d/dos2unix/dos2unix_7.4.2-2_amd64.deb  Temporary failure resolving 'us.archive.ubuntu.com'
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && dos2unix setup.sh"
bash: line 1: dos2unix: command not found
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && bash setup.sh"
setup.sh: line 2: $'\r': command not found
E: Invalid operation update
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package git
setup.sh: line 6: $'\r': command not found
setup.sh: line 32: syntax error: unexpected end of file
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && mkdir -p ~/GOAD/workspace/3a2bff-goad-virtualbox"
Connection to 192.168.56.3 closed.
[*] Launch scp D:\GOAD\workspace\3a2bff-goad-virtualbox\instance.json ->
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/instance.json
[*] CWD: \workspace\3a2bff-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
D:\GOAD\workspace\3a2bff-goad-virtualbox\instance.json
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/instance.json
instance.json                                                                         100%  237    57.9KB/s   00:00
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && dos2unix ~/GOAD/workspace/3a2bff-goad-virtualbox/instance.json"
bash: line 1: dos2unix: command not found
Connection to 192.168.56.3 closed.
[*] Launch scp D:\GOAD\workspace\3a2bff-goad-virtualbox\inventory ->
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/inventory
[*] CWD: \workspace\3a2bff-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
D:\GOAD\workspace\3a2bff-goad-virtualbox\inventory
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/inventory
inventory                                                                             100%  805    98.3KB/s   00:00
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && dos2unix ~/GOAD/workspace/3a2bff-goad-virtualbox/inventory"
bash: line 1: dos2unix: command not found
Connection to 192.168.56.3 closed.
[*] Launch scp D:\GOAD\workspace\3a2bff-goad-virtualbox\inventory_disable_vagrant ->
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/inventory_disable_vagrant
[*] CWD: \workspace\3a2bff-goad-virtualbox
[*] Running command : scp -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
D:\GOAD\workspace\3a2bff-goad-virtualbox\inventory_disable_vagrant
[email protected]:~/GOAD/workspace/3a2bff-goad-virtualbox/inventory_disable_vagrant
inventory_disable_vagrant                                                             100% 1615   262.9KB/s   00:00
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd ~ && dos2unix ~/GOAD/workspace/3a2bff-goad-virtualbox/inventory_disable_vagrant"
bash: line 1: dos2unix: command not found
Connection to 192.168.56.3 closed.
[*] Launch provisioning
[*] Loading inventory
[+] Lab inventory : D:\GOAD\ad\GOAD\data\inventory file found
[+] Provider inventory : D:\GOAD\workspace\3a2bff-goad-virtualbox\inventory file found
[+] Global inventory : D:\GOAD\globalsettings.ini file found
[*] Loading playbook list
[+] build.yml file found
[+] ad-servers.yml file found
[+] ad-parent_domain.yml file found
[+] ad-child_domain.yml file found
[+] wait5m.yml file found
[+] ad-members.yml file found
[+] ad-trusts.yml file found
[+] ad-data.yml file found
[+] ad-gmsa.yml file found
[+] laps.yml file found
[+] ad-relations.yml file found
[+] adcs.yml file found
[+] ad-acl.yml file found
[+] servers.yml file found
[+] security.yml file found
[+] vulnerabilities.yml file found
[*] Run playbook : build.yml with inventory file(s) : /home/vagrant/GOAD/ad/GOAD/data/inventory,
/home/vagrant/GOAD/workspace/3a2bff-goad-virtualbox/inventory, /home/vagrant/GOAD/globalsettings.ini
[*] Running command : command
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd /home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/3a2bff-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
bash: line 1: cd: /home/vagrant/GOAD/ansible/: No such file or directory
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd /home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/3a2bff-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
bash: line 1: cd: /home/vagrant/GOAD/ansible/: No such file or directory
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd /home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/3a2bff-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
bash: line 1: cd: /home/vagrant/GOAD/ansible/: No such file or directory
Connection to 192.168.56.3 closed.
[*] CWD:
[*] Running command : ssh -t -o StrictHostKeyChecking=no -i
D:\GOAD\workspace\3a2bff-goad-virtualbox\provider\.vagrant\machines\PROVISIONING\virtualbox\private_key
[email protected] "cd /home/vagrant/GOAD/ansible/ && /home/vagrant/.local/bin/ansible-playbook -i
/home/vagrant/GOAD/ad/GOAD/data/inventory -i /home/vagrant/GOAD/workspace/3a2bff-goad-virtualbox/inventory -i
/home/vagrant/GOAD/globalsettings.ini build.yml"
bash: line 1: cd: /home/vagrant/GOAD/ansible/: No such file or directory
Connection to 192.168.56.3 closed.
[-] 3 fails abort.
[-] Something wrong during the provisioning task : build.yml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants