mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
13 lines
210 B
Bash
Executable File
13 lines
210 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e -x
|
|
|
|
source default-config
|
|
|
|
./install-os-packages.sh vagrant-virtualbox
|
|
|
|
pushd "vagrant-freebsd"
|
|
vagrant up
|
|
vagrant ssh-config > vagrant-ssh
|
|
ssh -F vagrant-ssh default 'uname -a'
|
|
popd
|