1
0
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:
Adrian Todorov
2017-10-25 20:52:40 +00:00
parent 704f4d20d1
commit a59409f16b
1627 changed files with 489673 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
ttylinux-*
floppybird.img

20
vendor/github.com/vmware/govmomi/govc/test/images/update.sh generated vendored Executable file
View 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