Add default Smack manifest for oma-ds-service.spec
[pkgs/o/oma-ds-service.git] / syncmld_mgr
1 #!/bin/sh
2 ## A script for running syncmld in booting time.
3 ## Maintained by JooHark Park (juhaki.park@samsung.com) ByongUk Lee (byonguk.lee@samsung.com)
4
5 do_start () {
6         echo "[rc.d] running syncmld script"
7         /usr/bin/oma-ds-service &
8 }
9
10 case "$1" in
11         start)
12                 do_start
13                 ;;
14         *)
15                 echo "Usage: $0 start"
16                 exit 1
17 esac
18
19 exit 0