public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-dialup/freeradius/files: radius.init-r3 radius.conf-r3 freeradius-2.0.5-versionless-la-files.patch freeradius-2.1.6-ssl.patch freeradius-2.1.6-versionless-la-files.patch freeradius-2.1.7-ssl.patch freeradius-2.1.6-pkglibdir.patch freeradius-2.1.6-nothreads.patch freeradius-2.1.1-versionless-la-files.patch freeradius-2.1.7-qafixes.patch freeradius-2.1.7-pkglibdir.patch freeradius-2.0.5-ssl.patch freeradius-2.1.3-ssl.patch freeradius-2.1.3-qafixes.patch freeradius-2.1.1-ssl.patch freeradius-2.0.5-threads.patch freeradius-2.1.3-versionless-la-files.patch freeradius-2.1.1-qafixes.patch freeradius-2.1.3-pkglibdir.patch freeradius-2.1.6-qafixes.patch freeradius-2.1.7-nothreads.patch freeradius-2.1.7-versionless-la-files.patch
@ 2012-09-30  7:01 Diego Petteno (flameeyes)
  0 siblings, 0 replies; only message in thread
From: Diego Petteno (flameeyes) @ 2012-09-30  7:01 UTC (permalink / raw
  To: gentoo-commits

flameeyes    12/09/30 07:01:04

  Added:                radius.init-r3 radius.conf-r3
  Removed:              freeradius-2.0.5-versionless-la-files.patch
                        freeradius-2.1.6-ssl.patch
                        freeradius-2.1.6-versionless-la-files.patch
                        freeradius-2.1.7-ssl.patch
                        freeradius-2.1.6-pkglibdir.patch
                        freeradius-2.1.6-nothreads.patch
                        freeradius-2.1.1-versionless-la-files.patch
                        freeradius-2.1.7-qafixes.patch
                        freeradius-2.1.7-pkglibdir.patch
                        freeradius-2.0.5-ssl.patch
                        freeradius-2.1.3-ssl.patch
                        freeradius-2.1.3-qafixes.patch
                        freeradius-2.1.1-ssl.patch
                        freeradius-2.0.5-threads.patch
                        freeradius-2.1.3-versionless-la-files.patch
                        freeradius-2.1.1-qafixes.patch
                        freeradius-2.1.3-pkglibdir.patch
                        freeradius-2.1.6-qafixes.patch
                        freeradius-2.1.7-nothreads.patch
                        freeradius-2.1.7-versionless-la-files.patch
  Log:
  Remove stale patches. Version bump, ebuild and init script rewrite: patches are now hosted on dev.gentoo.org instead than in $FILESDIR; remove threads USE flag (solves bug #296907); enable DHCP support unconditionally, as it's not an extra dependency (solves bug #376721); add "old" directory to SRC_URI (solves bug #398771); adds sqlite support (solves bug #401569) as well as oracle (untested), iodbc and unixodbc; make readline, python and pcap optional; use REQUIRED_USE to disallow firebird support for bindist packages; support USE=-ssl properly; always turn on optional features that add no extra dependencies, including experimental modules (drops frascend, frxp and udpfromto USE flags); enable edirectory support when ldap is enabled (drops edirectory USE flag); add pkg_config function to generate required TLS certificates; new init script uses the latest runscript syntax support, which allows for detecting crashed radiusd instances.
  
  (Portage version: 2.2.0_alpha134/cvs/Linux x86_64)

Revision  Changes    Path
1.1                  net-dialup/freeradius/files/radius.init-r3

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/freeradius/files/radius.init-r3?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/freeradius/files/radius.init-r3?rev=1.1&content-type=text/plain

Index: radius.init-r3
===================================================================
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/freeradius/files/radius.init-r3,v 1.1 2012/09/30 07:01:04 flameeyes Exp $

command=/usr/sbin/radiusd
command_args="${RADIUSD_OPTS}"
pidfile="${pidfile:-/var/run/radiusd/radiusd.pid}"
extra_started_commands="reload"

depend() {
    need net
    use dns
}

start_pre() {
    if [ ! -f /etc/raddb/radiusd.conf ] ; then
	eerror "No /etc/raddb/radiusd.conf file exists!"
	return 1
    fi

    checkpath -m0750 -o "${RADIUSD_USER:-root}:${RADIUSD_GROUP:-root}" -d \
	$(dirname ${pidfile}) /var/log/radius
}

reload() {
    ebegin "Reloading radiusd"
    kill -HUP $(cat /var/run/radiusd/radiusd.pid)
    eend $?
}



1.1                  net-dialup/freeradius/files/radius.conf-r3

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/freeradius/files/radius.conf-r3?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/freeradius/files/radius.conf-r3?rev=1.1&content-type=text/plain

Index: radius.conf-r3
===================================================================
# Config file for /etc/init.d/radiusd

# see man pages for radiusd run `radiusd -h`
# for valid cmdline options
#RADIUSD_OPTS=""

# Change this value if you change it in /etc/raddb/radiusd.conf
pidfile=/var/run/radiusd/radiusd.pid

# Change these values if you change them in /etc/raddb/radiusd.conf
# RADIUSD_USER=radius
# RADIUSD_GROUP=radius





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-09-30  7:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-30  7:01 [gentoo-commits] gentoo-x86 commit in net-dialup/freeradius/files: radius.init-r3 radius.conf-r3 freeradius-2.0.5-versionless-la-files.patch freeradius-2.1.6-ssl.patch freeradius-2.1.6-versionless-la-files.patch freeradius-2.1.7-ssl.patch freeradius-2.1.6-pkglibdir.patch freeradius-2.1.6-nothreads.patch freeradius-2.1.1-versionless-la-files.patch freeradius-2.1.7-qafixes.patch freeradius-2.1.7-pkglibdir.patch freeradius-2.0.5-ssl.patch freeradius-2.1.3-ssl.patch freeradius-2.1.3-qafixes.patch freeradius-2.1.1-ssl.patch freeradius-2.0.5-threads.patch freeradius-2.1.3-versionless-la-files.patch freeradius-2.1.1-qafixes.patch freeradius-2.1.3-pkglibdir.patch freeradius-2.1.6-qafixes.patch freeradius-2.1.7-nothreads.patch freeradius-2.1.7-versionless-la-files.patch Diego Petteno (flameeyes)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox