Page 1 of 1

Start OpenEMM on boot

Posted: Mon Aug 03, 2009 2:10 pm
by mflammia
Hi,

Running the VMWare version of OpenEMM - does anyone know how to start OpenEMM.sh start from boot?

Cheers.

Posted: Mon Aug 03, 2009 5:46 pm
by mmenke
Try this:

vi into /etc/rc.local

Code: Select all

#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
su - openemm -c "OpenEMM.sh start“
works for me (it's copied from somewhere in the manual).

Posted: Mon Aug 03, 2009 6:32 pm
by mflammia
Thank you - that worked beautifully!