Skip to content
Snippets Groups Projects
start_turbo.sh 199 B
Newer Older
#/bin/bash

main()
{
	service postgresql start
	export USER=root;
	cd /turbo_install
	source ./set_env_vars 

	cd /tmp
	/turbo_home/bin/turbod.exe
	sleep 10
	/turbo_home/bin/prepd.exe

}

main "$@"