Skip to content

Commit

Permalink
PMM-12770 buster mount fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadym Yarosh committed Dec 26, 2023
1 parent 65ec544 commit f1d474e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/pmm-package-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,9 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates ansible virtualbox vagrant
if [[ "${{ inputs.os }}" =~ "buster" ]]; then
vagrant plugin install vagrant-vbguest
fi
- name: "Wait for PMM Server to be healthy"
run: |
Expand All @@ -237,6 +240,7 @@ jobs:
Vagrant.require_version ">= 1.7.0"
Vagrant.configure(2) do |config|
config.vm.box = "${{ env.VM_BOX }}"
${{ contains(env.VM_BOX, 'debian10') && 'config.vbguest.auto_update = true' }}
config.ssh.insert_key = false
config.vm.define :CLIENT_TEST do |t|
end
Expand Down

0 comments on commit f1d474e

Please sign in to comment.