apply FSL(Flora Software License)
[framework/connectivity/nfc-manager.git] / packaging / libnfc-manager-0.init.in
1 #!/bin/sh
2 ### BEGIN INIT INFO
3 # Provides:          nfc-agent
4 # Required-Start:
5 # Required-Stop:
6 # Default-Start:     3 5
7 # Default-Stop:      0
8 # Short-Description: NFC agent
9 # Description:       NFC agent
10 #
11 #
12 ### END INIT INFO
13
14 # Author: Wonkyu Kwon <wonkyu.kwon@samsung.com>
15
16 # PATH should only include /usr/* if it runs after the mountnfs.sh script
17 DAEMON=/usr/bin/nfc-agent # Introduce the server's location here
18 DAEMON_ARGS=""             # Arguments to run the daemon with
19
20 # Exit if the package is not installed
21 [ -x $DAEMON ] || exit 0
22
23 $DAEMON $DAEMON_ARGS &