From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 42CFB198005 for ; Thu, 21 Feb 2013 15:43:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15186E0552; Thu, 21 Feb 2013 15:43:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88A3EE0552 for ; Thu, 21 Feb 2013 15:43:16 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 89E5733DE49 for ; Thu, 21 Feb 2013 15:43:15 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2322) id 45F0D2171D; Thu, 21 Feb 2013 15:43:14 +0000 (UTC) From: "Julian Ospald (hasufell)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, hasufell@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-misc/badvpn/files: badvpn-1.999.127-ncd.init badvpn-ncd.service X-VCS-Repository: gentoo-x86 X-VCS-Files: badvpn-1.999.127-ncd.init badvpn-ncd.service X-VCS-Directories: net-misc/badvpn/files X-VCS-Committer: hasufell X-VCS-Committer-Name: Julian Ospald Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130221154314.45F0D2171D@flycatcher.gentoo.org> Date: Thu, 21 Feb 2013 15:43:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 13c0bf41-f16e-4afb-b13e-a3d95d36731b X-Archives-Hash: e695a03b7c80134367e736ea46e64b68 hasufell 13/02/21 15:43:14 Added: badvpn-1.999.127-ncd.init badvpn-ncd.service Log: version bump by Ambroz Bizjak wrt #454476 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key E73C35B3) Revision Changes Path 1.1 net-misc/badvpn/files/badvpn-1.999.127-ncd.init file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/badvpn/files/badvpn-1.999.127-ncd.init?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/badvpn/files/badvpn-1.999.127-ncd.init?rev=1.1&content-type=text/plain Index: badvpn-1.999.127-ncd.init =================================================================== #!/sbin/runscript # Copyright 1999-2013 Gentoo Foundation # Released under the 3-clause BSD license. command="${ncd_exec:-"/usr/bin/badvpn-ncd"}" command_args="${ncd_args} --config-file ${ncd_config:-/etc/ncd.conf}" command_background="YES" description="Network Configuration Daemon" pidfile="/var/run/${RC_SVCNAME}.pid" depend() { need localmount after bootmisc before netmount } start_pre() { if yesno "${ncd_syslog:-NO}"; then command_args="${command_args} --logger syslog --syslog-ident \"${ncd_syslog_ident:-${RC_SVCNAME}}\" --channel-loglevel ncd_log_msg info" fi } 1.1 net-misc/badvpn/files/badvpn-ncd.service file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/badvpn/files/badvpn-ncd.service?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/badvpn/files/badvpn-ncd.service?rev=1.1&content-type=text/plain Index: badvpn-ncd.service =================================================================== [Unit] Description=Network Configuation Daemon After=syslog.target [Service] ExecStart=/usr/bin/badvpn-ncd --logger syslog --syslog-ident ncd --loglevel warning --channel-loglevel ncd_log_msg info /etc/ncd.conf Restart=always [Install] WantedBy=multi-user.target