Gentoo Logo
Gentoo Spaceship




Note: Due to technical difficulties, the Archives are currently not up to date. GMANE provides an alternative service for most mailing lists.
c.f. bug 424647
List Archive: gentoo-commits
Navigation:
Lists: gentoo-commits: < Prev By Thread Next > < Prev By Date Next >
Headers:
To: gentoo-commits@g.o
From: "Jeremy Olexa (darkside)" <darkside@g.o>
Subject: gentoo-x86 commit in app-crypt/heimdal/files: krb5.conf heimdal-kpasswdd.initd heimdal-kadmind.initd heimdal-kcm.initd heimdal-kdc.initd
Date: Sun, 9 May 2010 03:50:52 +0000 (UTC)
darkside    10/05/09 03:50:52

  Added:                krb5.conf heimdal-kpasswdd.initd
                        heimdal-kadmind.initd heimdal-kcm.initd
                        heimdal-kdc.initd
  Log:
  Version bump. Cleaned up ebuild. Thanks to Torsten Kurbad and Eray Aslan.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  app-crypt/heimdal/files/krb5.conf

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/krb5.conf?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/krb5.conf?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/krb5.conf?r1=1.2&r2=1.3




1.1                  app-crypt/heimdal/files/heimdal-kpasswdd.initd

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kpasswdd.initd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kpasswdd.initd?rev=1.1&content-type=text/plain

Index: heimdal-kpasswdd.initd
===================================================================
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kpasswdd.initd,v 1.1 2010/05/09 03:50:52 darkside Exp $

depend() {
	need net
	use heimdal-kdc
	after logger
}

start() {
	ebegin "Starting Heimdal kpasswdd"
	start-stop-daemon --background --start --quiet --exec \
		/usr/sbin/kpasswdd
	eend $?
}

stop() {
	ebegin "Stopping Heimdal kpasswdd"
	start-stop-daemon --stop --quiet --exec \
		/usr/sbin/kpasswdd
	eend $?
}

restart() {
	svc_stop
	svc_start
}



1.1                  app-crypt/heimdal/files/heimdal-kadmind.initd

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kadmind.initd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kadmind.initd?rev=1.1&content-type=text/plain

Index: heimdal-kadmind.initd
===================================================================
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kadmind.initd,v 1.1 2010/05/09 03:50:52 darkside Exp $

depend() {
	need net
	use heimdal-kdc
	after logger
}

start() {
	ebegin "Starting Heimdal kadmind"
		/usr/sbin/kadmind  &
		echo $! > /var/run/heimdal-kadmind.pid
	eend $?
}

stop() {
	ebegin "Stopping Heimdal kadmind"
	start-stop-daemon --stop --quiet --exec \
		/usr/sbin/kadmind
	eend $?
}

restart() {
	svc_stop
	svc_start
}




1.1                  app-crypt/heimdal/files/heimdal-kcm.initd

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kcm.initd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kcm.initd?rev=1.1&content-type=text/plain

Index: heimdal-kcm.initd
===================================================================
#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kcm.initd,v 1.1 2010/05/09 03:50:52 darkside Exp $

depend() {
	after heimdal-kdc
}

start() {
	ebegin "Starting Heimdal KCM..."
	start-stop-daemon --start --pidfile /var/run/kcm.pid --exec /usr/sbin/kcm -- --detach
	eend $?
}

stop() {
	ebegin "Stopping Heimdal KCM..."
	start-stop-daemon --stop --pidfile /var/run/kcm.pid
	eend $?
}

restart() {
	svc_stop
	svc_start
}



1.1                  app-crypt/heimdal/files/heimdal-kdc.initd

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kdc.initd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kdc.initd?rev=1.1&content-type=text/plain

Index: heimdal-kdc.initd
===================================================================
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kdc.initd,v 1.1 2010/05/09 03:50:52 darkside Exp $

depend() {
	need net
	after logger
}

start() {
	ebegin "Starting Heimdal kdc"
	start-stop-daemon --start --quiet --exec \
		/usr/sbin/kdc -- --detach
	eend $?
}

stop() {
	ebegin "Stopping Heimdal kdc"
	start-stop-daemon --stop --quiet --exec \
		/usr/sbin/kdc
	eend $?
}

restart() {
	svc_stop
	svc_start
}






Navigation:
Lists: gentoo-commits: < Prev By Thread Next > < Prev By Date Next >
Previous by thread:
gentoo-x86 commit in app-crypt/heimdal: heimdal-1.3.2.ebuild ChangeLog
Next by thread:
gentoo-x86 commit in dev-ruby/gherkin/files: - New directory
Previous by date:
gentoo-x86 commit in app-crypt/heimdal: heimdal-1.3.2.ebuild ChangeLog
Next by date:
gentoo-x86 commit in dev-ruby/gherkin/files: - New directory


Updated Jun 26, 2012

Summary: Archive of the gentoo-commits mailing list.

Donate to support our development efforts.

Copyright 2001-2013 Gentoo Foundation, Inc. Questions, Comments? Contact us.