Comments ? Ok ? Can someone commit this ? Thanks! Index: Makefile =================================================================== RCS file: /cvs/ports/net/iodine/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- Makefile 3 Dec 2010 07:47:44 -0000 1.11 +++ Makefile 28 Feb 2011 01:43:21 -0000 @@ -3,7 +3,7 @@ COMMENT= tunnel IPv4 data through DNS
DISTNAME= iodine-0.5.2 -REVISION= 0 +REVISION= 1 CATEGORIES= net HOMEPAGE= http://code.kryo.se/iodine/ Index: patches/patch-man_iodine_8 =================================================================== RCS file: patches/patch-man_iodine_8 diff -N patches/patch-man_iodine_8 --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-man_iodine_8 6 Apr 2011 13:10:34 -0000 @@ -0,0 +1,15 @@ +$OpenBSD$ +--- man/iodine.8.orig Sat Mar 21 09:34:28 2009 ++++ man/iodine.8 Wed Apr 6 09:07:34 2011 +@@ -77,9 +77,11 @@ Keep running in foreground. + .TP + .B -u user + Drop privileges and run as user 'user' after setting up tunnel. ++The default is to run as _iodine. + .TP + .B -t chrootdir + Chroot to 'chrootdir' after setting up tunnel. ++By default, iodine chroots to /var/empty. + .TP + .B -d device + Use the TUN device 'device' instead of the normal one, which is dnsX on Linux Index: pkg/PLIST =================================================================== RCS file: /cvs/ports/net/iodine/pkg/PLIST,v retrieving revision 1.3 diff -u -r1.3 PLIST --- pkg/PLIST 30 Mar 2009 09:17:45 -0000 1.3 +++ pkg/PLIST 31 Mar 2011 13:18:31 -0000 @@ -4,3 +4,5 @@ @man man/man8/iodine.8 @bin sbin/iodine @bin sbin/iodined +@rcscript ${RCDIR}/iodined +@rcscript ${RCDIR}/iodine Index: pkg/iodine.rc =================================================================== RCS file: pkg/iodine.rc diff -N pkg/iodine.rc --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg/iodine.rc 31 Mar 2011 13:35:23 -0000 @@ -0,0 +1,9 @@ +#!/bin/sh + +daemon="${TRUEPREFIX}/sbin/iodine" + +. /etc/rc.d/rc.subr + +pexp="${daemon}[^d]" + +rc_cmd $1 Index: pkg/iodined.rc =================================================================== RCS file: pkg/iodined.rc diff -N pkg/iodined.rc --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg/iodined.rc 31 Mar 2011 13:24:48 -0000 - Hide quoted text - @@ -0,0 +1,9 @@ +#!/bin/sh + +daemon="${TRUEPREFIX}/sbin/iodined" + +. /etc/rc.d/rc.subr + +pexp=${daemon} + +rc_cmd $1 -- -Will Orr