[prev in list] [next in list] [prev in thread] [next in thread] 

List:       haiku-commits
Subject:    [haiku-commits] [L] Change in haiku[master]: 3rdparty/vagrant: drop vagrant
From:       Gerrit <review () review ! haiku-os ! org>
Date:       2024-04-16 20:15:26
Message-ID: 43d031aa76d5122471e28ef984b203044d06cbe9-HTML () review ! haiku-os ! org
[Download RAW message or body]

From Alexander von Gluck <alex@terarocket.io>:

Alexander von Gluck has uploaded this change for review. ( \
https://review.haiku-os.org/c/haiku/+/7622?usp=email )


Change subject: 3rdparty/vagrant: drop vagrant
......................................................................

3rdparty/vagrant: drop vagrant

* Honestly, Vagrant seems pretty dead at this point.
* We didn't see many users of this.
* Hashicorp has been doing weird license things too
  with BSL.

Change-Id: I2932a28fc6316266925e434c02bdd117c874d838
---
D 3rdparty/vagrant/README.md
D 3rdparty/vagrant/Vagrantfile
D 3rdparty/vagrant/libvirt/Vagrantfile
D 3rdparty/vagrant/libvirt/box.img
D 3rdparty/vagrant/libvirt/info.json
D 3rdparty/vagrant/libvirt/metadata.json
D 3rdparty/vagrant/virtualbox/Vagrantfile
D 3rdparty/vagrant/virtualbox/box-disk001.vmdk
D 3rdparty/vagrant/virtualbox/box.ovf
D 3rdparty/vagrant/virtualbox/info.json
D 3rdparty/vagrant/virtualbox/metadata.json
11 files changed, 14 insertions(+), 237 deletions(-)



  git pull ssh://git.haiku-os.org:22/haiku refs/changes/22/7622/1

diff --git a/3rdparty/vagrant/README.md b/3rdparty/vagrant/README.md
deleted file mode 100644
index 334b8d9..0000000
--- a/3rdparty/vagrant/README.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# Haiku Vagrant boxes
-
-> Haiku, Inc. has access to draft a new release at Vagrant
-
-https://app.vagrantup.com/haiku-os
-
-## Creating libvirt box
-
-Create base image:
-```qemu-image -f qcow2 libvirt/box.img 8G```
-
-Install Haiku:
-```qemu-system-x86_64 --enable-kvm -hda libvirt/box.img -cdrom <haiku.iso> -m 1G```
-
-Boot Haiku:
-```qemu-system-x86_64 --enable-kvm -hda libvirt/box.img -m 1G```
-
-Update software:
-```
-pkgman update
-<reboot>
-pkgman install vim
-```
-
-Install vagrant public key:
-```
-mkdir ~/config/settings/ssh
-wget https://raw.githubusercontent.com/hashicorp/vagrant/main/keys/vagrant.pub -O \
                ~/config/settings/ssh/authorized_keys
-chmod 700 ~/config/settings/ssh
-chmod 600 ~/config/settings/ssh/authorized_keys
-```
-
-Rename "user" to "vagrant" by editing /etc/passwd. Change "user" to "vagrant"
-
-### Packaging libvirt
-
-```
-cd libvirt
-tar cvzf ../libvirt.box *
-```
-
-## Creating VirtualBox box
-
-```
-qemu-image convert -f qcow2 -O vmdk libvirt/box.img virtualbox/box-0001.vmdk
-cd virtualbox
-tar cvzf ../virtualbox.box *
-```
diff --git a/3rdparty/vagrant/Vagrantfile b/3rdparty/vagrant/Vagrantfile
deleted file mode 100644
index 087adab..0000000
--- a/3rdparty/vagrant/Vagrantfile
+++ /dev/null
@@ -1,7 +0,0 @@
-#
-# Example Vagrantfile to launch a haiku image
-#
-Vagrant.configure("2") do |config|
-  config.vm.box = "haiku-os/r1beta3-x86_64"
-  config.vm.box_version = "20220216"
-end
diff --git a/3rdparty/vagrant/libvirt/Vagrantfile \
b/3rdparty/vagrant/libvirt/Vagrantfile deleted file mode 100644
index 36dc2b7..0000000
--- a/3rdparty/vagrant/libvirt/Vagrantfile
+++ /dev/null
@@ -1,12 +0,0 @@
-Vagrant.configure("2") do |config|
-  config.vm.provider :libvirt do |libvirt|
-    libvirt.driver = "kvm"
-    libvirt.host = ""
-    libvirt.memory = 1024
-    libvirt.cpus = 2
-    libvirt.input :type => "tablet", :bus => "usb"
-	libvirt.video_type = "qxl"
-	libvirt.graphics_type = "spice"
-    libvirt.machine_arch = "x86_64"
-  end
-end
diff --git a/3rdparty/vagrant/libvirt/box.img b/3rdparty/vagrant/libvirt/box.img
deleted file mode 100644
index e69de29..0000000
--- a/3rdparty/vagrant/libvirt/box.img
+++ /dev/null
diff --git a/3rdparty/vagrant/libvirt/info.json b/3rdparty/vagrant/libvirt/info.json
deleted file mode 100644
index 668a434..0000000
--- a/3rdparty/vagrant/libvirt/info.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
-  "author": "Haiku, Inc.",
-  "homepage": "https://haiku-os.org"
-}
diff --git a/3rdparty/vagrant/libvirt/metadata.json \
b/3rdparty/vagrant/libvirt/metadata.json deleted file mode 100644
index a791ee9..0000000
--- a/3rdparty/vagrant/libvirt/metadata.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-"provider"		: "libvirt",
-"format"		: "qcow2",
-"virtual_size"	:	8
-}
diff --git a/3rdparty/vagrant/virtualbox/Vagrantfile \
b/3rdparty/vagrant/virtualbox/Vagrantfile deleted file mode 100644
index f3479c3..0000000
--- a/3rdparty/vagrant/virtualbox/Vagrantfile
+++ /dev/null
@@ -1,11 +0,0 @@
-Vagrant::Config.run do |config|
-  # This Vagrantfile is auto-generated by `vagrant package` to contain
-  # the MAC address of the box. Custom configuration should be placed in
-  # the actual `Vagrantfile` in this box.
-  config.vm.base_mac = "0800274992E3"
-end
-
-# Load include vagrant file if it exists after the auto-generated
-# so it can override any of the settings
-include_vagrantfile = File.expand_path("../include/_Vagrantfile", __FILE__)
-load include_vagrantfile if File.exist?(include_vagrantfile)
diff --git a/3rdparty/vagrant/virtualbox/box-disk001.vmdk \
b/3rdparty/vagrant/virtualbox/box-disk001.vmdk deleted file mode 100644
index e69de29..0000000
--- a/3rdparty/vagrant/virtualbox/box-disk001.vmdk
+++ /dev/null
diff --git a/3rdparty/vagrant/virtualbox/box.ovf \
b/3rdparty/vagrant/virtualbox/box.ovf deleted file mode 100755
index e4cbfef..0000000
--- a/3rdparty/vagrant/virtualbox/box.ovf
+++ /dev/null
@@ -1,145 +0,0 @@
-<?xml version="1.0"?>
-<Envelope ovf:version="1.0" xml:lang="en-US" \
xmlns="http://schemas.dmtf.org/ovf/envelope/1" \
xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1" \
xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData" \
xmlns:vssd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" \
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" \
                xmlns:vbox="http://www.virtualbox.org/ovf/machine">
-  <References>
-    <File ovf:id="file1" ovf:href="box-disk001.vmdk"/>
-  </References>
-  <DiskSection>
-    <Info>List of the virtual disks used in the package</Info>
-    <Disk ovf:capacity="8589934592" ovf:diskId="vmdisk1" ovf:fileRef="file1" \
ovf:format="http://www.vmware.com/interfaces/specifications/vmdk.html#streamOptimized" \
                vbox:uuid="a95a6679-1fc8-49f8-b6b0-9fa7cd9f1b75"/>
-  </DiskSection>
-  <NetworkSection>
-    <Info>Logical networks used in the package</Info>
-    <Network ovf:name="NAT">
-      <Description>Logical network used by this appliance.</Description>
-    </Network>
-  </NetworkSection>
-  <VirtualSystem ovf:id="haiku-r1b3-x86_64">
-    <Info>A virtual machine</Info>
-    <OperatingSystemSection ovf:id="102">
-      <Info>The kind of installed guest operating system</Info>
-      <Description>Other_64</Description>
-      <vbox:OSType ovf:required="false">Other_64</vbox:OSType>
-    </OperatingSystemSection>
-    <VirtualHardwareSection>
-      <Info>Virtual hardware requirements for a virtual machine</Info>
-      <System>
-        <vssd:ElementName>Virtual Hardware Family</vssd:ElementName>
-        <vssd:InstanceID>0</vssd:InstanceID>
-        <vssd:VirtualSystemIdentifier>haiku-r1b3-x86_64</vssd:VirtualSystemIdentifier>
                
-        <vssd:VirtualSystemType>virtualbox-2.2</vssd:VirtualSystemType>
-      </System>
-      <Item>
-        <rasd:Caption>2 virtual CPU</rasd:Caption>
-        <rasd:Description>Number of virtual CPUs</rasd:Description>
-        <rasd:ElementName>2 virtual CPU</rasd:ElementName>
-        <rasd:InstanceID>1</rasd:InstanceID>
-        <rasd:ResourceType>3</rasd:ResourceType>
-        <rasd:VirtualQuantity>2</rasd:VirtualQuantity>
-      </Item>
-      <Item>
-        <rasd:AllocationUnits>MegaBytes</rasd:AllocationUnits>
-        <rasd:Caption>1024 MB of memory</rasd:Caption>
-        <rasd:Description>Memory Size</rasd:Description>
-        <rasd:ElementName>1024 MB of memory</rasd:ElementName>
-        <rasd:InstanceID>2</rasd:InstanceID>
-        <rasd:ResourceType>4</rasd:ResourceType>
-        <rasd:VirtualQuantity>1024</rasd:VirtualQuantity>
-      </Item>
-      <Item>
-        <rasd:Address>0</rasd:Address>
-        <rasd:Caption>sataController0</rasd:Caption>
-        <rasd:Description>SATA Controller</rasd:Description>
-        <rasd:ElementName>sataController0</rasd:ElementName>
-        <rasd:InstanceID>3</rasd:InstanceID>
-        <rasd:ResourceSubType>AHCI</rasd:ResourceSubType>
-        <rasd:ResourceType>20</rasd:ResourceType>
-      </Item>
-      <Item>
-        <rasd:Address>0</rasd:Address>
-        <rasd:Caption>usb</rasd:Caption>
-        <rasd:Description>USB Controller</rasd:Description>
-        <rasd:ElementName>usb</rasd:ElementName>
-        <rasd:InstanceID>4</rasd:InstanceID>
-        <rasd:ResourceType>23</rasd:ResourceType>
-      </Item>
-      <Item>
-        <rasd:AddressOnParent>3</rasd:AddressOnParent>
-        <rasd:AutomaticAllocation>false</rasd:AutomaticAllocation>
-        <rasd:Caption>sound</rasd:Caption>
-        <rasd:Description>Sound Card</rasd:Description>
-        <rasd:ElementName>sound</rasd:ElementName>
-        <rasd:InstanceID>5</rasd:InstanceID>
-        <rasd:ResourceSubType>ensoniq1371</rasd:ResourceSubType>
-        <rasd:ResourceType>35</rasd:ResourceType>
-      </Item>
-      <Item>
-        <rasd:AddressOnParent>0</rasd:AddressOnParent>
-        <rasd:Caption>disk1</rasd:Caption>
-        <rasd:Description>Disk Image</rasd:Description>
-        <rasd:ElementName>disk1</rasd:ElementName>
-        <rasd:HostResource>/disk/vmdisk1</rasd:HostResource>
-        <rasd:InstanceID>6</rasd:InstanceID>
-        <rasd:Parent>3</rasd:Parent>
-        <rasd:ResourceType>17</rasd:ResourceType>
-      </Item>
-      <Item>
-        <rasd:AutomaticAllocation>true</rasd:AutomaticAllocation>
-        <rasd:Caption>Ethernet adapter on 'NAT'</rasd:Caption>
-        <rasd:Connection>NAT</rasd:Connection>
-        <rasd:ElementName>Ethernet adapter on 'NAT'</rasd:ElementName>
-        <rasd:InstanceID>7</rasd:InstanceID>
-        <rasd:ResourceType>10</rasd:ResourceType>
-      </Item>
-    </VirtualHardwareSection>
-    <vbox:Machine ovf:required="false" version="1.18-linux" \
uuid="{93d1f24d-7107-485a-994c-85db13d3ff8e}" name="haiku-r1b3-x86_64" \
                OSType="Other_64" snapshotFolder="Snapshots" \
                lastStateChange="2020-07-03T13:23:10Z">
-      <ovf:Info>Complete VirtualBox machine configuration in VirtualBox \
                format</ovf:Info>
-      <ExtraData>
-        <ExtraDataItem name="GUI/LastCloseAction" value="PowerOff"/>
-        <ExtraDataItem name="GUI/LastNormalWindowPosition" \
                value="280,274,1024,821"/>
-      </ExtraData>
-      <Hardware>
-        <CPU count="2">
-          <PAE enabled="true"/>
-          <LongMode enabled="true"/>
-          <HardwareVirtExLargePages enabled="false"/>
-        </CPU>
-        <Memory RAMSize="1024"/>
-        <HID Pointing="USBTablet"/>
-        <Boot>
-          <Order position="1" device="HardDisk"/>
-          <Order position="2" device="None"/>
-          <Order position="3" device="None"/>
-          <Order position="4" device="None"/>
-        </Boot>
-        <Display VRAMSize="10"/>
-        <VideoCapture file="." fps="25"/>
-        <BIOS>
-          <IOAPIC enabled="true"/>
-          <SmbiosUuidLittleEndian enabled="true"/>
-        </BIOS>
-        <USB>
-          <Controllers>
-            <Controller name="OHCI" type="OHCI"/>
-          </Controllers>
-        </USB>
-        <Network>
-          <Adapter slot="0" enabled="true" MACAddress="0800274992E3" type="virtio">
-            <NAT/>
-          </Adapter>
-        </Network>
-        <AudioAdapter driver="Pulse" enabled="true" enabledOut="true"/>
-        <Clipboard/>
-        <GuestProperties>
-          <GuestProperty name="/VirtualBox/HostInfo/GUI/LanguageID" value="en_US" \
                timestamp="1593782383102601000" flags=""/>
-        </GuestProperties>
-        <StorageControllers>
-          <StorageController name="AHCI" type="AHCI" PortCount="1" \
useHostIOCache="false" Bootable="true" IDE0MasterEmulationPort="0" \
                IDE0SlaveEmulationPort="1" IDE1MasterEmulationPort="2" \
                IDE1SlaveEmulationPort="3">
-            <AttachedDevice type="HardDisk" hotpluggable="false" port="0" \
                device="0">
-              <Image uuid="{a95a6679-1fc8-49f8-b6b0-9fa7cd9f1b75}"/>
-            </AttachedDevice>
-          </StorageController>
-        </StorageControllers>
-      </Hardware>
-    </vbox:Machine>
-  </VirtualSystem>
-</Envelope>
diff --git a/3rdparty/vagrant/virtualbox/info.json \
b/3rdparty/vagrant/virtualbox/info.json deleted file mode 100644
index 668a434..0000000
--- a/3rdparty/vagrant/virtualbox/info.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
-  "author": "Haiku, Inc.",
-  "homepage": "https://haiku-os.org"
-}
diff --git a/3rdparty/vagrant/virtualbox/metadata.json \
b/3rdparty/vagrant/virtualbox/metadata.json deleted file mode 100644
index d177b38..0000000
--- a/3rdparty/vagrant/virtualbox/metadata.json
+++ /dev/null
@@ -1 +0,0 @@
-{"provider":"virtualbox"}
\ No newline at end of file

--
To view, visit https://review.haiku-os.org/c/haiku/+/7622?usp=email
To unsubscribe, or for help writing mail filters, visit \
https://review.haiku-os.org/settings

Gerrit-Project: haiku
Gerrit-Branch: master
Gerrit-Change-Id: I2932a28fc6316266925e434c02bdd117c874d838
Gerrit-Change-Number: 7622
Gerrit-PatchSet: 1
Gerrit-Owner: Alexander von Gluck <alex@terarocket.io>
Gerrit-MessageType: newchange


[Attachment #3 (text/html)]

<p>Alexander von Gluck has uploaded this change for <strong>review</strong>.</p><p><a \
href="https://review.haiku-os.org/c/haiku/+/7622?usp=email">View Change</a></p><pre \
style="font-family: monospace,monospace; white-space: pre-wrap;">3rdparty/vagrant: \
drop vagrant<br><br>* Honestly, Vagrant seems pretty dead at this point.<br>* We \
didn&#39;t see many users of this.<br>* Hashicorp has been doing weird license things \
too<br>  with BSL.<br><br>Change-Id: \
I2932a28fc6316266925e434c02bdd117c874d838<br>---<br>D 3rdparty/vagrant/README.md<br>D \
3rdparty/vagrant/Vagrantfile<br>D 3rdparty/vagrant/libvirt/Vagrantfile<br>D \
3rdparty/vagrant/libvirt/box.img<br>D 3rdparty/vagrant/libvirt/info.json<br>D \
3rdparty/vagrant/libvirt/metadata.json<br>D \
3rdparty/vagrant/virtualbox/Vagrantfile<br>D \
3rdparty/vagrant/virtualbox/box-disk001.vmdk<br>D \
3rdparty/vagrant/virtualbox/box.ovf<br>D 3rdparty/vagrant/virtualbox/info.json<br>D \
3rdparty/vagrant/virtualbox/metadata.json<br>11 files changed, 14 insertions(+), 237 \
deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: \
pre-wrap;">git pull ssh://git.haiku-os.org:22/haiku refs/changes/22/7622/1</pre><pre \
style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git \
a/3rdparty/vagrant/README.md b/3rdparty/vagrant/README.md</span><br><span>deleted \
file mode 100644</span><br><span>index 334b8d9..0000000</span><br><span>--- \
a/3rdparty/vagrant/README.md</span><br><span>+++ /dev/null</span><br><span>@@ -1,48 \
+0,0 @@</span><br><span style="color: hsl(0, 100%, 40%);">-# Haiku Vagrant \
boxes</span><br><span style="color: hsl(0, 100%, 40%);">-</span><br><span \
style="color: hsl(0, 100%, 40%);">-&gt; Haiku, Inc. has access to draft a new release \
at Vagrant</span><br><span style="color: hsl(0, 100%, 40%);">-</span><br><span \
style="color: hsl(0, 100%, 40%);">-https://app.vagrantup.com/haiku-os</span><br><span \
style="color: hsl(0, 100%, 40%);">-</span><br><span style="color: hsl(0, 100%, \
40%);">-## Creating libvirt box</span><br><span style="color: hsl(0, 100%, \
40%);">-</span><br><span style="color: hsl(0, 100%, 40%);">-Create base \
image:</span><br><span style="color: hsl(0, 100%, 40%);">-```qemu-image -f qcow2 \
libvirt/box.img 8G```</span><br><span style="color: hsl(0, 100%, \
40%);">-</span><br><span style="color: hsl(0, 100%, 40%);">-Install \
Haiku:</span><br><span style="color: hsl(0, 100%, 40%);">-```qemu-system-x86_64 \
--enable-kvm -hda libvirt/box.img -cdrom &lt;haiku.iso&gt; -m 1G```</span><br><span \
style="color: hsl(0, 100%, 40%);">-</span><br><span style="color: hsl(0, 100%, \
40%);">-Boot Haiku:</span><br><span style="color: hsl(0, 100%, \
40%);">-```qemu-system-x86_64 --enable-kvm -hda libvirt/box.img -m \
1G```</span><br><span style="color: hsl(0, 100%, 40%);">-</span><br><span \
style="color: hsl(0, 100%, 40%);">-Update software:</span><br><span style="color: \
hsl(0, 100%, 40%);">-```</span><br><span style="color: hsl(0, 100%, 40%);">-pkgman \
update</span><br><span style="color: hsl(0, 100%, \
40%);">-&lt;reboot&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-pkgman \
install vim</span><br><span style="color: hsl(0, 100%, 40%);">-```</span><br><span \
style="color: hsl(0, 100%, 40%);">-</span><br><span style="color: hsl(0, 100%, \
40%);">-Install vagrant public key:</span><br><span style="color: hsl(0, 100%, \
40%);">-```</span><br><span style="color: hsl(0, 100%, 40%);">-mkdir \
~/config/settings/ssh</span><br><span style="color: hsl(0, 100%, 40%);">-wget \
https://raw.githubusercontent.com/hashicorp/vagrant/main/keys/vagrant.pub -O \
~/config/settings/ssh/authorized_keys</span><br><span style="color: hsl(0, 100%, \
40%);">-chmod 700 ~/config/settings/ssh</span><br><span style="color: hsl(0, 100%, \
40%);">-chmod 600 ~/config/settings/ssh/authorized_keys</span><br><span style="color: \
hsl(0, 100%, 40%);">-```</span><br><span style="color: hsl(0, 100%, \
40%);">-</span><br><span style="color: hsl(0, 100%, 40%);">-Rename &quot;user&quot; \
to &quot;vagrant&quot; by editing /etc/passwd. Change &quot;user&quot; to \
&quot;vagrant&quot;</span><br><span style="color: hsl(0, 100%, \
40%);">-</span><br><span style="color: hsl(0, 100%, 40%);">-### Packaging \
libvirt</span><br><span style="color: hsl(0, 100%, 40%);">-</span><br><span \
style="color: hsl(0, 100%, 40%);">-```</span><br><span style="color: hsl(0, 100%, \
40%);">-cd libvirt</span><br><span style="color: hsl(0, 100%, 40%);">-tar cvzf \
../libvirt.box *</span><br><span style="color: hsl(0, 100%, \
40%);">-```</span><br><span style="color: hsl(0, 100%, 40%);">-</span><br><span \
style="color: hsl(0, 100%, 40%);">-## Creating VirtualBox box</span><br><span \
style="color: hsl(0, 100%, 40%);">-</span><br><span style="color: hsl(0, 100%, \
40%);">-```</span><br><span style="color: hsl(0, 100%, 40%);">-qemu-image convert -f \
qcow2 -O vmdk libvirt/box.img virtualbox/box-0001.vmdk</span><br><span style="color: \
hsl(0, 100%, 40%);">-cd virtualbox</span><br><span style="color: hsl(0, 100%, \
40%);">-tar cvzf ../virtualbox.box *</span><br><span style="color: hsl(0, 100%, \
40%);">-```</span><br><span>diff --git a/3rdparty/vagrant/Vagrantfile \
b/3rdparty/vagrant/Vagrantfile</span><br><span>deleted file mode \
100644</span><br><span>index 087adab..0000000</span><br><span>--- \
a/3rdparty/vagrant/Vagrantfile</span><br><span>+++ /dev/null</span><br><span>@@ -1,7 \
+0,0 @@</span><br><span style="color: hsl(0, 100%, 40%);">-#</span><br><span \
style="color: hsl(0, 100%, 40%);">-# Example Vagrantfile to launch a haiku \
image</span><br><span style="color: hsl(0, 100%, 40%);">-#</span><br><span \
style="color: hsl(0, 100%, 40%);">-Vagrant.configure(&quot;2&quot;) do \
|config|</span><br><span style="color: hsl(0, 100%, 40%);">-  config.vm.box = \
&quot;haiku-os/r1beta3-x86_64&quot;</span><br><span style="color: hsl(0, 100%, \
40%);">-  config.vm.box_version = &quot;20220216&quot;</span><br><span style="color: \
hsl(0, 100%, 40%);">-end</span><br><span>diff --git \
a/3rdparty/vagrant/libvirt/Vagrantfile \
b/3rdparty/vagrant/libvirt/Vagrantfile</span><br><span>deleted file mode \
100644</span><br><span>index 36dc2b7..0000000</span><br><span>--- \
a/3rdparty/vagrant/libvirt/Vagrantfile</span><br><span>+++ \
/dev/null</span><br><span>@@ -1,12 +0,0 @@</span><br><span style="color: hsl(0, 100%, \
40%);">-Vagrant.configure(&quot;2&quot;) do |config|</span><br><span style="color: \
hsl(0, 100%, 40%);">-  config.vm.provider :libvirt do |libvirt|</span><br><span \
style="color: hsl(0, 100%, 40%);">-    libvirt.driver = \
&quot;kvm&quot;</span><br><span style="color: hsl(0, 100%, 40%);">-    libvirt.host = \
&quot;&quot;</span><br><span style="color: hsl(0, 100%, 40%);">-    libvirt.memory = \
1024</span><br><span style="color: hsl(0, 100%, 40%);">-    libvirt.cpus = \
2</span><br><span style="color: hsl(0, 100%, 40%);">-    libvirt.input :type =&gt; \
&quot;tablet&quot;, :bus =&gt; &quot;usb&quot;</span><br><span style="color: hsl(0, \
100%, 40%);">-	libvirt.video_type = &quot;qxl&quot;</span><br><span style="color: \
hsl(0, 100%, 40%);">-	libvirt.graphics_type = &quot;spice&quot;</span><br><span \
style="color: hsl(0, 100%, 40%);">-    libvirt.machine_arch = \
&quot;x86_64&quot;</span><br><span style="color: hsl(0, 100%, 40%);">-  \
end</span><br><span style="color: hsl(0, 100%, 40%);">-end</span><br><span>diff --git \
a/3rdparty/vagrant/libvirt/box.img \
b/3rdparty/vagrant/libvirt/box.img</span><br><span>deleted file mode \
100644</span><br><span>index e69de29..0000000</span><br><span>--- \
a/3rdparty/vagrant/libvirt/box.img</span><br><span>+++ /dev/null</span><br><span>diff \
--git a/3rdparty/vagrant/libvirt/info.json \
b/3rdparty/vagrant/libvirt/info.json</span><br><span>deleted file mode \
100644</span><br><span>index 668a434..0000000</span><br><span>--- \
a/3rdparty/vagrant/libvirt/info.json</span><br><span>+++ /dev/null</span><br><span>@@ \
-1,4 +0,0 @@</span><br><span style="color: hsl(0, 100%, 40%);">-{</span><br><span \
style="color: hsl(0, 100%, 40%);">-  &quot;author&quot;: &quot;Haiku, \
Inc.&quot;,</span><br><span style="color: hsl(0, 100%, 40%);">-  \
&quot;homepage&quot;: &quot;https://haiku-os.org&quot;</span><br><span style="color: \
hsl(0, 100%, 40%);">-}</span><br><span>diff --git \
a/3rdparty/vagrant/libvirt/metadata.json \
b/3rdparty/vagrant/libvirt/metadata.json</span><br><span>deleted file mode \
100644</span><br><span>index a791ee9..0000000</span><br><span>--- \
a/3rdparty/vagrant/libvirt/metadata.json</span><br><span>+++ \
/dev/null</span><br><span>@@ -1,5 +0,0 @@</span><br><span style="color: hsl(0, 100%, \
40%);">-{</span><br><span style="color: hsl(0, 100%, 40%);">-&quot;provider&quot;		: \
&quot;libvirt&quot;,</span><br><span style="color: hsl(0, 100%, \
40%);">-&quot;format&quot;		: &quot;qcow2&quot;,</span><br><span style="color: hsl(0, \
100%, 40%);">-&quot;virtual_size&quot;	:	8</span><br><span style="color: hsl(0, 100%, \
40%);">-}</span><br><span>diff --git a/3rdparty/vagrant/virtualbox/Vagrantfile \
b/3rdparty/vagrant/virtualbox/Vagrantfile</span><br><span>deleted file mode \
100644</span><br><span>index f3479c3..0000000</span><br><span>--- \
a/3rdparty/vagrant/virtualbox/Vagrantfile</span><br><span>+++ \
/dev/null</span><br><span>@@ -1,11 +0,0 @@</span><br><span style="color: hsl(0, 100%, \
40%);">-Vagrant::Config.run do |config|</span><br><span style="color: hsl(0, 100%, \
40%);">-  # This Vagrantfile is auto-generated by `vagrant package` to \
contain</span><br><span style="color: hsl(0, 100%, 40%);">-  # the MAC address of the \
box. Custom configuration should be placed in</span><br><span style="color: hsl(0, \
100%, 40%);">-  # the actual `Vagrantfile` in this box.</span><br><span style="color: \
hsl(0, 100%, 40%);">-  config.vm.base_mac = &quot;0800274992E3&quot;</span><br><span \
style="color: hsl(0, 100%, 40%);">-end</span><br><span style="color: hsl(0, 100%, \
40%);">-</span><br><span style="color: hsl(0, 100%, 40%);">-# Load include vagrant \
file if it exists after the auto-generated</span><br><span style="color: hsl(0, 100%, \
40%);">-# so it can override any of the settings</span><br><span style="color: hsl(0, \
100%, 40%);">-include_vagrantfile = \
File.expand_path(&quot;../include/_Vagrantfile&quot;, __FILE__)</span><br><span \
style="color: hsl(0, 100%, 40%);">-load include_vagrantfile if \
File.exist?(include_vagrantfile)</span><br><span>diff --git \
a/3rdparty/vagrant/virtualbox/box-disk001.vmdk \
b/3rdparty/vagrant/virtualbox/box-disk001.vmdk</span><br><span>deleted file mode \
100644</span><br><span>index e69de29..0000000</span><br><span>--- \
a/3rdparty/vagrant/virtualbox/box-disk001.vmdk</span><br><span>+++ \
/dev/null</span><br><span>diff --git a/3rdparty/vagrant/virtualbox/box.ovf \
b/3rdparty/vagrant/virtualbox/box.ovf</span><br><span>deleted file mode \
100755</span><br><span>index e4cbfef..0000000</span><br><span>--- \
a/3rdparty/vagrant/virtualbox/box.ovf</span><br><span>+++ \
/dev/null</span><br><span>@@ -1,145 +0,0 @@</span><br><span style="color: hsl(0, \
100%, 40%);">-&lt;?xml version=&quot;1.0&quot;?&gt;</span><br><span style="color: \
hsl(0, 100%, 40%);">-&lt;Envelope ovf:version=&quot;1.0&quot; \
xml:lang=&quot;en-US&quot; xmlns=&quot;http://schemas.dmtf.org/ovf/envelope/1&quot; \
xmlns:ovf=&quot;http://schemas.dmtf.org/ovf/envelope/1&quot; \
xmlns:rasd=&quot;http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData&quot; \
xmlns:vssd=&quot;http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData&quot; \
xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; \
xmlns:vbox=&quot;http://www.virtualbox.org/ovf/machine&quot;&gt;</span><br><span \
style="color: hsl(0, 100%, 40%);">-  &lt;References&gt;</span><br><span style="color: \
hsl(0, 100%, 40%);">-    &lt;File ovf:id=&quot;file1&quot; \
ovf:href=&quot;box-disk001.vmdk&quot;/&gt;</span><br><span style="color: hsl(0, 100%, \
40%);">-  &lt;/References&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-  \
&lt;DiskSection&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-    \
&lt;Info&gt;List of the virtual disks used in the \
package&lt;/Info&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-    &lt;Disk \
ovf:capacity=&quot;8589934592&quot; ovf:diskId=&quot;vmdisk1&quot; \
ovf:fileRef=&quot;file1&quot; \
ovf:format=&quot;http://www.vmware.com/interfaces/specifications/vmdk.html#streamOptimized&quot; \
vbox:uuid=&quot;a95a6679-1fc8-49f8-b6b0-9fa7cd9f1b75&quot;/&gt;</span><br><span \
style="color: hsl(0, 100%, 40%);">-  &lt;/DiskSection&gt;</span><br><span \
style="color: hsl(0, 100%, 40%);">-  &lt;NetworkSection&gt;</span><br><span \
style="color: hsl(0, 100%, 40%);">-    &lt;Info&gt;Logical networks used in the \
package&lt;/Info&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-    \
&lt;Network ovf:name=&quot;NAT&quot;&gt;</span><br><span style="color: hsl(0, 100%, \
40%);">-      &lt;Description&gt;Logical network used by this \
appliance.&lt;/Description&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-    \
&lt;/Network&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-  \
&lt;/NetworkSection&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-  \
&lt;VirtualSystem ovf:id=&quot;haiku-r1b3-x86_64&quot;&gt;</span><br><span \
style="color: hsl(0, 100%, 40%);">-    &lt;Info&gt;A virtual \
machine&lt;/Info&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-    \
&lt;OperatingSystemSection ovf:id=&quot;102&quot;&gt;</span><br><span style="color: \
hsl(0, 100%, 40%);">-      &lt;Info&gt;The kind of installed guest operating \
system&lt;/Info&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-      \
&lt;Description&gt;Other_64&lt;/Description&gt;</span><br><span style="color: hsl(0, \
100%, 40%);">-      &lt;vbox:OSType \
ovf:required=&quot;false&quot;&gt;Other_64&lt;/vbox:OSType&gt;</span><br><span \
style="color: hsl(0, 100%, 40%);">-    \
&lt;/OperatingSystemSection&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-   \
&lt;VirtualHardwareSection&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-    \
&lt;Info&gt;Virtual hardware requirements for a virtual \
machine&lt;/Info&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-      \
&lt;System&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-        \
&lt;vssd:ElementName&gt;Virtual Hardware \
Family&lt;/vssd:ElementName&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-   \
&lt;vssd:InstanceID&gt;0&lt;/vssd:InstanceID&gt;</span><br><span style="color: hsl(0, \
100%, 40%);">-        \
&lt;vssd:VirtualSystemIdentifier&gt;haiku-r1b3-x86_64&lt;/vssd:VirtualSystemIdentifier&gt;</span><br><span \
style="color: hsl(0, 100%, 40%);">-        \
&lt;vssd:VirtualSystemType&gt;virtualbox-2.2&lt;/vssd:VirtualSystemType&gt;</span><br><span \
style="color: hsl(0, 100%, 40%);">-      &lt;/System&gt;</span><br><span \
style="color: hsl(0, 100%, 40%);">-      &lt;Item&gt;</span><br><span style="color: \
hsl(0, 100%, 40%);">-        &lt;rasd:Caption&gt;2 virtual \
CPU&lt;/rasd:Caption&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-        \
&lt;rasd:Description&gt;Number of virtual \
CPUs&lt;/rasd:Description&gt;</span><br><span style="color: hsl(0, 100%, 40%);">-     \

<div style="display:none"> Gerrit-Project: haiku </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-Change-Id: \
I2932a28fc6316266925e434c02bdd117c874d838 </div> <div style="display:none"> \
Gerrit-Change-Number: 7622 </div> <div style="display:none"> Gerrit-PatchSet: 1 \
</div> <div style="display:none"> Gerrit-Owner: Alexander von Gluck \
&lt;alex@terarocket.io&gt; </div> <div style="display:none"> Gerrit-MessageType: \
newchange </div>



[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic