#!/bin/sh ### BEGIN INIT INFO # Provides: nfc-agent # Required-Start: # Required-Stop: # Default-Start: 3 5 # Default-Stop: 0 # Short-Description: NFC agent # Description: NFC agent # # ### END INIT INFO # Author: Wonkyu Kwon # PATH should only include /usr/* if it runs after the mountnfs.sh script DAEMON=/usr/bin/nfc-agent # Introduce the server's location here DAEMON_ARGS="" # Arguments to run the daemon with # Exit if the package is not installed [ -x $DAEMON ] || exit 0 $DAEMON $DAEMON_ARGS &