]> pilppa.org Git - familiar-h63xx-build.git/commitdiff
gpe-shield: don't install setuid root. clean up init script.
authorRene Wagner <rw@handhelds.org>
Sat, 12 Aug 2006 16:52:28 +0000 (18:52 +0200)
committerRene Wagner <rw@handhelds.org>
Sat, 12 Aug 2006 16:52:28 +0000 (18:52 +0200)
Signed-off-by: Rene Wagner <rw@handhelds.org>
org.handhelds.familiar/packages/gpe-shield/gpe-shield_0.9.bb
org.handhelds.familiar/packages/gpe-shield/ipshield [new file with mode: 0755]

index fd1d2c4a179766f1af2a748af3d62d2e8924d24c..aa7ce6f963c42fb605840f7127c74bf13abd0ba2 100644 (file)
@@ -1,11 +1,19 @@
-PR          = "r0"
+PR          = "r1"
 LICENSE     = "GPL"
 DEPENDS     = "libgpewidget iptables virtual/kernel"
-RDEPENDS    = "iptables"
+RDEPENDS    = "gpe-su iptables"
 RRECOMMENDS = "kernel-module-ipt-state"
 SECTION     = "gpe"
 MAINTAINER  = "Florian Boor <florian.boor@kernelconcepts.de>"
 
 DESCRIPTION = "GPE network security tool"
 
-inherit gpe pkgconfig
+inherit gpe
+
+SRC_URI += "file://ipshield"
+
+do_install_append () {
+       chmod 0755 ${D}${bindir}/gpe-shield
+       sed -i -e 's:Exec=gpe:Exec=gpe-su -c ${bindir}/gpe:' ${D}${datadir}/applications/${PN}.desktop
+       install -m 0755 ${WORKDIR}/ipshield ${D}${sysconfdir}/init.d
+}
diff --git a/org.handhelds.familiar/packages/gpe-shield/ipshield b/org.handhelds.familiar/packages/gpe-shield/ipshield
new file mode 100755 (executable)
index 0000000..41160c0
--- /dev/null
@@ -0,0 +1,50 @@
+#! /bin/sh
+#
+# Startup script for gpe firewall engine. 
+# Based on debian skeleton.
+#      
+
+set -e
+
+PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
+GPE_SHIELD=/usr/bin/gpe-shield
+IPTABLES=/usr/sbin/iptables
+NAME=gpe-shield
+DESC="GPE desktop firewall"
+
+SCRIPTNAME=/etc/init.d/$NAME
+
+# Gracefully exit if the package has been removed.
+test -x $GPE_SHIELD || exit 0
+
+# Read config file if it is present.
+#if [ -r /etc/default/$NAME ]
+#then
+#      . /etc/default/$NAME
+#fi
+
+
+case "$1" in
+  start)
+       test -f /etc/access.conf || exit 0
+
+       echo -n "Starting $DESC: $NAME"
+       if [ -f /etc/gpe/gpe-shield-load ]
+       then
+               $GPE_SHIELD --activate > /dev/null && echo -n " done"
+       else
+               echo -n " deactivated"
+       fi
+       echo "."
+       ;;
+  stop)
+       echo -n "Stopping $DESC: $NAME"
+       ($IPTABLES --flush && $IPTABLES -P INPUT ACCEPT) > /dev/null &&  echo "."
+       ;;
+  *)
+       echo "Usage: $SCRIPTNAME {start|stop}" >&2
+       exit 1
+       ;;
+esac
+
+exit 0