Skip to content

Commit

Permalink
VPC: Review Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed Sep 3, 2024
1 parent a4e3c81 commit 2bb5ef3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 16 deletions.
2 changes: 1 addition & 1 deletion ansible/pbTestScripts/vagrantPlaybookCheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ startVMPlaybook()
echo "DEBUG - SF01"

# Run the ansible playbook with the constructed args
ansible-playbook "$args" playbooks/AdoptOpenJDK_Unix_Playbook/main.yml 2>&1 | tee $WORKSPACE/adoptopenjdkPBTests/logFiles/$gitFork.$newGitBranch.$OS.log
ansible-playbook "$args playbooks/AdoptOpenJDK_Unix_Playbook/main.yml" 2>&1 | tee $WORKSPACE/adoptopenjdkPBTests/logFiles/$gitFork.$newGitBranch.$OS.log

echo The playbook finished at : `date +%T`
if ! grep -q 'unreachable=0.*failed=0' $pbLogPath; then
Expand Down
15 changes: 1 addition & 14 deletions ansible/playbooks/vagrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -348,20 +348,7 @@
state: present
when: virtualbox_installed.rc != 0
tags: VBox

## Configure Acceptance For VBox Extension Pack

- name: Set VirtualBox extension pack license agreement
shell: echo virtualbox-ext-pack virtualbox-ext-pack/license select true | sudo debconf-set-selections
when: virtualbox_installed.rc != 0

- name: Install VirtualBox Extension Pack
apt:
name: "virtualbox-ext-pack"
state: present
when: virtualbox_installed.rc != 0
tags: VBox


Check failure on line 351 in ansible/playbooks/vagrant.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

yaml[trailing-spaces]

Trailing spaces

Check failure on line 351 in ansible/playbooks/vagrant.yml

View workflow job for this annotation

GitHub Actions / Yamllint

351:1 [trailing-spaces] trailing spaces
##########
# QEMU #
##########
Expand Down
2 changes: 1 addition & 1 deletion ansible/vagrant/Vagrantfile.Win2022.Adopt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Vagrant.configure("2") do |config|
v.gui = false
v.memory = 8192
v.cpus = 2
v.customize ["modifyvm", :id, "--cpuexecutioncap", "80"]
v.customize ["modifyvm", :id, "--cpuexecutioncap", "50"]
end
config.vm.boot_timeout = 600
end

0 comments on commit 2bb5ef3

Please sign in to comment.