mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 11:36:51 +00:00
add vendoring with go dep
This commit is contained in:
3
vendor/github.com/vmware/govmomi/govc/test/images/.gitignore
generated
vendored
Normal file
3
vendor/github.com/vmware/govmomi/govc/test/images/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
ttylinux-*
|
||||
floppybird.img
|
||||
|
20
vendor/github.com/vmware/govmomi/govc/test/images/update.sh
generated
vendored
Executable file
20
vendor/github.com/vmware/govmomi/govc/test/images/update.sh
generated
vendored
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
|
||||
pushd $(dirname $0)
|
||||
|
||||
# Sadly, the ttylinux project was abandoned in late 2015.
|
||||
# But this release still serves us well.
|
||||
base_url=http://dl.bintray.com/dougm/ttylinux
|
||||
ttylinux="ttylinux-pc_i486-16.1"
|
||||
files="${ttylinux}.iso ${ttylinux}-live.ova ${ttylinux}.ova"
|
||||
|
||||
for name in $files ; do
|
||||
wget -qO $name $base_url/$name
|
||||
done
|
||||
|
||||
wget -qN https://github.com/icebreaker/floppybird/raw/master/build/floppybird.img
|
||||
|
||||
# extract ova so we can also use the .vmdk and .ovf files directly
|
||||
tar -xvf ${ttylinux}.ova
|
||||
|
||||
popd
|
Reference in New Issue
Block a user