Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/heimdal/files: krb5.conf heimdal-kpasswdd.initd heimdal-kadmind.initd heimdal-kcm.initd heimdal-kdc.initd
Date: Sun, 09 May 2010 03:50:57
Message-Id: 20100509035052.DEC7E2C414@corvid.gentoo.org
1 darkside 10/05/09 03:50:52
2
3 Added: krb5.conf heimdal-kpasswdd.initd
4 heimdal-kadmind.initd heimdal-kcm.initd
5 heimdal-kdc.initd
6 Log:
7 Version bump. Cleaned up ebuild. Thanks to Torsten Kurbad and Eray Aslan.
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 app-crypt/heimdal/files/krb5.conf
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/krb5.conf?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/krb5.conf?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/krb5.conf?r1=1.2&r2=1.3
16
17
18
19
20 1.1 app-crypt/heimdal/files/heimdal-kpasswdd.initd
21
22 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kpasswdd.initd?rev=1.1&view=markup
23 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kpasswdd.initd?rev=1.1&content-type=text/plain
24
25 Index: heimdal-kpasswdd.initd
26 ===================================================================
27 #!/sbin/runscript
28 # Copyright 1999-2004 Gentoo Foundation
29 # Distributed under the terms of the GNU General Public License v2
30 # $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kpasswdd.initd,v 1.1 2010/05/09 03:50:52 darkside Exp $
31
32 depend() {
33 need net
34 use heimdal-kdc
35 after logger
36 }
37
38 start() {
39 ebegin "Starting Heimdal kpasswdd"
40 start-stop-daemon --background --start --quiet --exec \
41 /usr/sbin/kpasswdd
42 eend $?
43 }
44
45 stop() {
46 ebegin "Stopping Heimdal kpasswdd"
47 start-stop-daemon --stop --quiet --exec \
48 /usr/sbin/kpasswdd
49 eend $?
50 }
51
52 restart() {
53 svc_stop
54 svc_start
55 }
56
57
58
59 1.1 app-crypt/heimdal/files/heimdal-kadmind.initd
60
61 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kadmind.initd?rev=1.1&view=markup
62 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kadmind.initd?rev=1.1&content-type=text/plain
63
64 Index: heimdal-kadmind.initd
65 ===================================================================
66 #!/sbin/runscript
67 # Copyright 1999-2004 Gentoo Foundation
68 # Distributed under the terms of the GNU General Public License v2
69 # $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kadmind.initd,v 1.1 2010/05/09 03:50:52 darkside Exp $
70
71 depend() {
72 need net
73 use heimdal-kdc
74 after logger
75 }
76
77 start() {
78 ebegin "Starting Heimdal kadmind"
79 /usr/sbin/kadmind &
80 echo $! > /var/run/heimdal-kadmind.pid
81 eend $?
82 }
83
84 stop() {
85 ebegin "Stopping Heimdal kadmind"
86 start-stop-daemon --stop --quiet --exec \
87 /usr/sbin/kadmind
88 eend $?
89 }
90
91 restart() {
92 svc_stop
93 svc_start
94 }
95
96
97
98
99 1.1 app-crypt/heimdal/files/heimdal-kcm.initd
100
101 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kcm.initd?rev=1.1&view=markup
102 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kcm.initd?rev=1.1&content-type=text/plain
103
104 Index: heimdal-kcm.initd
105 ===================================================================
106 #!/sbin/runscript
107 # Copyright 1999-2007 Gentoo Foundation
108 # Distributed under the terms of the GNU General Public License v2
109 # $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kcm.initd,v 1.1 2010/05/09 03:50:52 darkside Exp $
110
111 depend() {
112 after heimdal-kdc
113 }
114
115 start() {
116 ebegin "Starting Heimdal KCM..."
117 start-stop-daemon --start --pidfile /var/run/kcm.pid --exec /usr/sbin/kcm -- --detach
118 eend $?
119 }
120
121 stop() {
122 ebegin "Stopping Heimdal KCM..."
123 start-stop-daemon --stop --pidfile /var/run/kcm.pid
124 eend $?
125 }
126
127 restart() {
128 svc_stop
129 svc_start
130 }
131
132
133
134 1.1 app-crypt/heimdal/files/heimdal-kdc.initd
135
136 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kdc.initd?rev=1.1&view=markup
137 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/heimdal/files/heimdal-kdc.initd?rev=1.1&content-type=text/plain
138
139 Index: heimdal-kdc.initd
140 ===================================================================
141 #!/sbin/runscript
142 # Copyright 1999-2004 Gentoo Foundation
143 # Distributed under the terms of the GNU General Public License v2
144 # $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/files/heimdal-kdc.initd,v 1.1 2010/05/09 03:50:52 darkside Exp $
145
146 depend() {
147 need net
148 after logger
149 }
150
151 start() {
152 ebegin "Starting Heimdal kdc"
153 start-stop-daemon --start --quiet --exec \
154 /usr/sbin/kdc -- --detach
155 eend $?
156 }
157
158 stop() {
159 ebegin "Stopping Heimdal kdc"
160 start-stop-daemon --stop --quiet --exec \
161 /usr/sbin/kdc
162 eend $?
163 }
164
165 restart() {
166 svc_stop
167 svc_start
168 }