+#
+# Copyright (C) 2008-2011 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
include $(TOPDIR)/rules.mk
PKG_NAME:=ndyndns
PKG_VERSION:=2.1
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://ndyndns.googlecode.com/files
define Package/ndyndns/conffiles
/etc/ndyndns/ndyndns.conf.sample
-/etc/default/ndyndns
endef
define Package/ndyndns/install
$(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/ndyndns $(1)/usr/sbin
- $(INSTALL_DIR) $(1)/etc/default
- $(INSTALL_BIN) files/$(PKG_NAME).default $(1)/etc/default/$(PKG_NAME)
+ $(INSTALL_BIN) $(PKG_BUILD_DIR)/ndyndns $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/etc/init.d/
- $(INSTALL_BIN) files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
- $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
- $(INSTALL_CONF) files/$(PKG_NAME).conf.sample $(1)/etc/$(PKG_NAME)
+ $(INSTALL_BIN) files/ndyndns.init $(1)/etc/init.d/ndyndns
+ $(INSTALL_DIR) $(1)/etc/ndyndns
+ $(INSTALL_CONF) files/ndyndns.conf.sample $(1)/etc/ndyndns
endef
$(eval $(call BuildPackage,ndyndns))
#!/bin/sh /etc/rc.common
-# Copyright (C) 2007 OpenWrt.org
+# Copyright (C) 2007-2011 OpenWrt.org
START=80
-DEFAULT=/etc/default/ndyndns
-start() {
- [ -f $DEFAULT ] && . $DEFAULT
+include /lib/network
- . /etc/functions.sh
- include /lib/network
+start() {
scan_interfaces
- /usr/sbin/ndyndns -c $CHROOT -f $CONFIG -i $(config_get wan ifname) $OPTIONS
+ config_get wan_if 'wan' 'ifname'
+ [ -n "$wan_if" ] || return 1
+ [ -f /etc/ndyndns/ndyndns.conf ] || {
+ echo "$0: missing config file '/etc/ndyndns/ndyndns.conf'" 1>&2
+ return 1
+ }
+ service_start /usr/sbin/ndyndns -c /etc/ndyndns -f /etc/ndyndns/ndyndns.conf -i $wan_if
}
stop() {
- killall ndyndns
+ service_stop /usr/sbin/ndyndns
}