Starting BlueDragon with Python

I don't know about anybody else but the default startup script that installs with BlueDragon on linux never worked for me. It always failed to do anything. I descended into having to manually restart BlueDragon every time I restarted my server which is a real pain. I know a real sys admin would have solved this long ago. Well the pain goes on no longer. I finally realized that I can use python to start the service for me as system start time. Here is the code.

#!usr/bin/env python

import os

os.system('sh /usr/local/NewAtlanta/BlueDragon_Server_70/bin/StartBlueDragon.sh')

Comments