2015-12-07 21:10:19 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-12-07 22:11:31 +08:00
|
|
|
MONKEY_FOLDER=/var/monkey_island
|
2015-12-07 21:10:19 +08:00
|
|
|
INSTALLATION_FOLDER=/var/monkey_island/installation
|
|
|
|
|
|
|
|
# install pip requirements
|
2015-12-07 22:11:31 +08:00
|
|
|
pip install -r $MONKEY_FOLDER/pip_requirements.txt --no-index --find-links file://$INSTALLATION_FOLDER
|
2015-12-07 21:10:19 +08:00
|
|
|
|
2015-12-07 22:11:31 +08:00
|
|
|
# remove installation folder and unnecessary files
|
2015-12-07 21:49:14 +08:00
|
|
|
rm -rf $INSTALLATION_FOLDER
|
2015-12-07 22:11:31 +08:00
|
|
|
rm -f $MONKEY_FOLDER/pip_requirements.txt
|
|
|
|
|
|
|
|
mv $MONKEY_FOLDER/ubuntu/* /etc/init/
|
|
|
|
|
|
|
|
service monkey-island start
|
|
|
|
service monkey-mongo start
|