From 1203b4c004f0579bba568f1c74e10d0dd4ab55a3 Mon Sep 17 00:00:00 2001
From: nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Mon, 12 Dec 2005 03:52:27 +0000
Subject: move init scripts and related out of ipkg/

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2637 3c298f89-4303-0410-b956-a3cf2f4a3e73
---
 package/snort/Makefile            |  6 ++----
 package/snort/files/snort.default |  2 ++
 package/snort/files/snort.init    | 23 +++++++++++++++++++++++
 package/snort/ipkg/snort.default  |  2 --
 package/snort/ipkg/snort.init     | 23 -----------------------
 5 files changed, 27 insertions(+), 29 deletions(-)
 create mode 100644 package/snort/files/snort.default
 create mode 100644 package/snort/files/snort.init
 delete mode 100644 package/snort/ipkg/snort.default
 delete mode 100644 package/snort/ipkg/snort.init

(limited to 'package/snort')

diff --git a/package/snort/Makefile b/package/snort/Makefile
index 630ac127e..9f265508f 100644
--- a/package/snort/Makefile
+++ b/package/snort/Makefile
@@ -109,13 +109,11 @@ $(PKG_BUILD_DIR)/$(2): $(PKG_BUILD_DIR)/.prepared
 	mv $(PKG_BUILD_DIR)/src/snort $(PKG_BUILD_DIR)/$(2)
 
 $$(IPKG_$(1)): $(PKG_BUILD_DIR)/.installed $(PKG_BUILD_DIR)/$(2)
-	rm -rf $$(IDIR_$(1))
-	$(SCRIPT_DIR)/make-ipkg-dir.sh $$(IDIR_$(1)) ./ipkg/$(2).control $(3) $(4)
 	install -m0644 ./ipkg/snort.conffiles $$(IDIR_$(1))/CONTROL/conffiles
 	install -d -m0755 $$(IDIR_$(1))/etc/default
-	install -m0644 ./ipkg/snort.default $$(IDIR_$(1))/etc/default/snort
+	install -m0644 ./files/snort.default $$(IDIR_$(1))/etc/default/snort
 	install -d -m0755 $$(IDIR_$(1))/etc/init.d
-	install -m0755 ./ipkg/snort.init $$(IDIR_$(1))/etc/init.d/snort
+	install -m0755 ./files/snort.init $$(IDIR_$(1))/etc/init.d/snort
 	install -d -m0755 $$(IDIR_$(1))/etc/snort
 	install -m0644 $(PKG_BUILD_DIR)/etc/snort.conf $$(IDIR_$(1))/etc/snort/
 	install -m0644 $(PKG_BUILD_DIR)/etc/classification.config $$(IDIR_$(1))/etc/snort/
diff --git a/package/snort/files/snort.default b/package/snort/files/snort.default
new file mode 100644
index 000000000..796a893b0
--- /dev/null
+++ b/package/snort/files/snort.default
@@ -0,0 +1,2 @@
+INTERFACE="vlan1" # WAN
+OPTIONS="-i $INTERFACE -c /etc/snort/snort.conf -D -N -q -s"
diff --git a/package/snort/files/snort.init b/package/snort/files/snort.init
new file mode 100644
index 000000000..8c019c41d
--- /dev/null
+++ b/package/snort/files/snort.init
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+DEFAULT=/etc/default/snort
+LOG_D=/var/log/snort
+RUN_D=/var/run
+[ -f $DEFAULT ] && . $DEFAULT
+PID_F=$RUN_D/snort_$INTERFACE.pid
+
+case $1 in
+ start)
+  [ -d $LOG_D ] || mkdir -p $LOG_D
+  [ -d $RUN_D ] || mkdir -p $RUN_D
+  snort $OPTIONS
+  ;;
+ stop)
+  [ -f $PID_F ] && kill $(cat $PID_F)
+  ;;
+ *)
+  echo "usage: $0 (start|stop)"
+  exit 1
+esac
+
+exit $?
diff --git a/package/snort/ipkg/snort.default b/package/snort/ipkg/snort.default
deleted file mode 100644
index 796a893b0..000000000
--- a/package/snort/ipkg/snort.default
+++ /dev/null
@@ -1,2 +0,0 @@
-INTERFACE="vlan1" # WAN
-OPTIONS="-i $INTERFACE -c /etc/snort/snort.conf -D -N -q -s"
diff --git a/package/snort/ipkg/snort.init b/package/snort/ipkg/snort.init
deleted file mode 100644
index 8c019c41d..000000000
--- a/package/snort/ipkg/snort.init
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-DEFAULT=/etc/default/snort
-LOG_D=/var/log/snort
-RUN_D=/var/run
-[ -f $DEFAULT ] && . $DEFAULT
-PID_F=$RUN_D/snort_$INTERFACE.pid
-
-case $1 in
- start)
-  [ -d $LOG_D ] || mkdir -p $LOG_D
-  [ -d $RUN_D ] || mkdir -p $RUN_D
-  snort $OPTIONS
-  ;;
- stop)
-  [ -f $PID_F ] && kill $(cat $PID_F)
-  ;;
- *)
-  echo "usage: $0 (start|stop)"
-  exit 1
-esac
-
-exit $?
-- 
cgit v1.2.3