463464465466467468469470471
} private static void doStateSilent() { prepareProperties(); WrappedService w = getService(); w.init(); int state = w.state(); }
471472473474475476477478479480481482483
} private static void doStatePosix() { prepareProperties(); WrappedService w = getService(); int state = w.state(); if (w.isRunning(state)) _exitCode = 0; else _exitCode = 3; _exitOnTerminate = true; }