2011-10-07 08:06:01 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
chsh -s bash vagrant
|
|
|
|
|
2014-09-01 03:32:41 +00:00
|
|
|
PACKAGES="
|
|
|
|
curl
|
|
|
|
python
|
|
|
|
python34
|
|
|
|
py27-pip
|
|
|
|
py27-virtualenv
|
2011-10-07 08:06:01 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
PIP_PACKAGES="
|
2012-09-30 00:47:41 +00:00
|
|
|
futures
|
2011-10-07 08:06:01 +00:00
|
|
|
pycurl
|
2012-09-30 00:47:41 +00:00
|
|
|
tox
|
2011-10-07 08:06:01 +00:00
|
|
|
"
|
|
|
|
|
2014-09-01 03:32:41 +00:00
|
|
|
ASSUME_ALWAYS_YES=true pkg install $PACKAGES
|
2011-10-07 08:06:01 +00:00
|
|
|
|
|
|
|
pip install $PIP_PACKAGES
|
|
|
|
|
|
|
|
/tornado/maint/vm/shared-setup.sh
|