[packages] libvncserver: depends on libjpeg and libpthread
[openwrt/svn-archive/archive.git] / libs / howl / files / autoipd.init
index eed593603c43e703bef31cdf4555305447fa29e5..4a8ec07d46f8b45ed0494b501c6724ed31ddaac8 100644 (file)
@@ -1,20 +1,15 @@
-#!/bin/sh
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006-2011 OpenWrt.org
 
-DEFAULT=/etc/default/autopid
-RUN_D=/var/run
-PID_F=$RUN_D/autoipd.pid
-[ -f $DEFAULT ] && . $DEFAULT
+START=50
+
+# XXX: pid-file is /var/run/autoipd-<INTERFACE>.pid
+SERVICE_USE_PID=
+
+start() {
+       service_start /usr/sbin/autoipd
+}
+stop() {
+       service_stop /usr/sbin/autoipd
+}
 
-case $1 in
- start)
-  [ -d $RUN_D ] || mkdir -p $RUN_D
-  autoipd $OPTIONS
-  ;;
- stop)
-  [ -f $PID_F ] && kill $(cat $PID_F)
-  ;;
- *)
-  echo "usage: $0 (start|stop)"
-  exit 1
-esac
-exit $?