xmw 14/07/18 15:53:51 Added: iodined-1.init iodine-0.7.0-TestMessage.patch Log: Version bump (bug 513560, CVE-2014-4168), EAPI-5, approved by vostoga. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
Revision Changes Path 1.1 net-misc/iodine/files/iodined-1.init file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/files/iodined-1.init?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/files/iodined-1.init?rev=1.1&content-type=text/plain Index: iodined-1.init =================================================================== #!/sbin/runscript # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/files/iodined-1.init,v 1.1 2014/07/18 15:53:51 xmw Exp $ PID_FILE="/run/iodined.pid" depend() { need net } start() { ebegin "Starting iodined" ARGS="" if [ "$IODINED_USER" ]; then ARGS="$ARGS -u $IODINED_USER" fi if [ "$IODINED_CHROOT" ]; then ARGS="$ARGS -t $IODINED_CHROOT" fi if [ "$IODINED_MTU" ]; then ARGS="$ARGS -m $IODINED_MTU" fi if [ "$IODINED_LISTENPORT" ]; then ARGS="$ARGS -p $IODINED_LISTENPORT" fi if [ "$IODINED_EXTERN_IP" ]; then ARGS="$ARGS -n $IODINED_EXTERN_IP" fi if [ "$IODINED_LOCAL_DNS_PORT" ]; then ARGS="$ARGS -b $IODINED_LOCAL_DNS_PORT" fi if [ "$IODINED_LISTENIP" ]; then ARGS="$ARGS -l $IODINED_LISTENIP" fi if [ "$IODINED_PASSWD" ]; then ARGS="$ARGS -P $IODINED_PASSWD" else eerror "Please set a password (IODINED_PASSWD) in /etc/conf.d/iodined!" return 1 fi if [ "$IODINED_IP" ]; then ARGS="$ARGS $IODINED_IP" else eerror "Please set an IP (IODINED_IP) in /etc/conf.d/iodined!" return 1 fi if [ "$IODINED_DOMAIN" ]; then ARGS="$ARGS $IODINED_DOMAIN" else eerror "Please set a domain (IODINED_DOMAIN) in /etc/conf.d/iodined!" return 1 fi start-stop-daemon --start --exec /usr/sbin/iodined --pidfile $PID_FILE -- -F $PID_FILE $ARGS eend $? } stop() { ebegin "Stopping iodined" start-stop-daemon --stop --exec /usr/sbin/iodined --pidfile $PID_FILE eend $? } 1.1 net-misc/iodine/files/iodine-0.7.0-TestMessage.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/files/iodine-0.7.0-TestMessage.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/files/iodine-0.7.0-TestMessage.patch?rev=1.1&content-type=text/plain Index: iodine-0.7.0-TestMessage.patch =================================================================== --- iodine-0.7.0/Makefile +++ iodine-0.7.0/Makefile @@ -35,8 +35,7 @@ $(RM) $(RM_FLAGS) $(DESTDIR)$(mandir)/man8/iodine.8 test: all - @echo "!! The check library is required for compiling and running the tests" - @echo "!! Get it at http://check.sf.net" + @echo "Executing tests target" @(cd tests; $(MAKE) TARGETOS=$(TARGETOS) all) clean:
