1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00
awx/tools/docker/start_development.sh

11 lines
252 B
Bash
Raw Normal View History

#!/bin/bash
2015-06-12 18:39:30 +03:00
/etc/init.d/ssh start
/etc/init.d/postgresql start
/etc/init.d/redis-server start
nohup mongod &
if ! [ -d "/tower_devel/awx/lib/site-packages" ]; then
ln -s /tower/awx/lib/site-packages /tower_devel/awx/lib/site-packages
fi
/bin/bash