#!/bin/sh /etc/rc.common START=10 STOP=15 start() { echo start # commands to launch application } stop() { echo stop # commands to kill application }