ubuntu-dev-machine-setup icon indicating copy to clipboard operation
ubuntu-dev-machine-setup copied to clipboard

Install virtualbox extension pack

Open FazleArefin opened this issue 5 years ago • 0 comments

Oracle tries to make sure you read and agree to their awesome license agreement before installing the package. This makes it difficult for automated installs. Sample code below needs to be integrated in the playbooks:

- block:
  - name: accept licence virtualbox ext pack
    debconf:
      name: "virtualbox-ext-pack"
      question: "virtualbox-ext-pack/license"
      value: "true"
      vtype: "select"

  - name: install virtualbox ext pack
    apt:
      name: "virtualbox-ext-pack"

  when: not virtual_machine_mode

FazleArefin avatar Jul 24 '20 14:07 FazleArefin