Sha256: d2220136754e4f22aa74eb8cf0c698ff7bc29979e72c312faec5b4e3864caad2

Contents?: true

Size: 446 Bytes

Versions: 2

Compression:

Stored size: 446 Bytes

Contents

#!/bin/bash

if [[ $1 == '--help' || $1 == '' ]]; then
  echo "A helper to test plugin sources with several Vagrant versions."
  echo "Usage: $0 <image> <command>"
  echo "Examples:"
  echo "$0 vagrant:1.7.4 up"
  echo "$0 vagrant:1.8.7 up"
  echo "$0 vagrant:1.9.1 up"
  echo "$0 vagrant:1.9.1 destroy -f"
  exit 0
fi

image=$1
shift

docker run --rm -it \
  -v "$(pwd):/work" \
  -v ~/.vagrant.d/Vagrantfile:/user/Vagrantfile \
  "$image" "$@"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-vcloud-0.5.0 integration/test.sh
vagrant-vcloud-0.4.7 integration/test.sh