Changeset 2434
- Timestamp:
- Jun 14, 2013, 12:50:47 PM (12 years ago)
- Location:
- branches/fc19-dev
- Files:
-
- 3 deleted
- 23 edited
- 11 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/fc19-dev
- Property svn:mergeinfo changed
/trunk (added) merged: 2405-2421,2425-2428,2432-2433
- Property svn:mergeinfo changed
-
branches/fc19-dev/host/debian/scripts-syslog-ng-config/debian/changelog
r2099 r2434 1 scripts-syslog-ng-config (0.6) wheezy; urgency=low 2 3 * Take into account that config-package-deb on dh7 requires .transform files 4 5 -- Alexander Chernyakhovsky <achernya@mit.edu> Sun, 26 May 2013 22:36:12 -0400 6 7 scripts-syslog-ng-config (0.5) wheezy; urgency=low 8 9 * Update to dh7 10 11 -- Alexander Chernyakhovsky <achernya@mit.edu> Sun, 26 May 2013 21:49:26 -0400 12 1 13 scripts-syslog-ng-config (0.4) stable; urgency=low 2 14 -
branches/fc19-dev/host/debian/scripts-syslog-ng-config/debian/control
r2099 r2434 3 3 Priority: extra 4 4 Maintainer: scripts team <scripts-team@mit.edu> 5 Build-Depends: cdbs,debhelper (>= 7.0.50~), config-package-dev, syslog-ng,6 Standards-Version: 3.9. 15 Build-Depends: debhelper (>= 7.0.50~), config-package-dev, syslog-ng, 6 Standards-Version: 3.9.4 7 7 Homepage: http://scripts.mit.edu/ 8 8 -
branches/fc19-dev/host/debian/scripts-syslog-ng-config/debian/rules
r1969 r2434 1 1 #!/usr/bin/make -f 2 3 DEB_TRANSFORM_FILES_scripts-syslog-ng-config = /etc/syslog-ng/syslog-ng.conf.divert 4 5 include /usr/share/cdbs/1/rules/debhelper.mk 6 include /usr/share/cdbs/1/rules/config-package.mk 7 2 %: 3 dh $@ --with config-package -
branches/fc19-dev/host/debian/scripts-vm-host/debian/changelog
r1975 r2434 1 scripts-vm-host (0.8) wheezy; urgency=low 2 3 * Take into account config-package-dev now needs .transform files 4 5 -- Alexander Chernyakhovsky <achernya@mit.edu> Sun, 26 May 2013 22:44:41 -0400 6 7 scripts-vm-host (0.7) wheezy; urgency=low 8 9 * emacs24-nox is a lie for now, switch back to emacs23-nox 10 * Switch to dh7 11 12 -- Alexander Chernyakhovsky <achernya@mit.edu> Sun, 26 May 2013 21:24:31 -0400 13 14 scripts-vm-host (0.6) wheezy; urgency=low 15 16 * Update configuration for wheezy 17 18 -- Alexander Chernyakhovsky <achernya@mit.edu> Sun, 26 May 2013 20:59:04 -0400 19 1 20 scripts-vm-host (0.5) stable; urgency=low 2 21 -
branches/fc19-dev/host/debian/scripts-vm-host/debian/control
r1974 r2434 3 3 Priority: extra 4 4 Maintainer: scripts team <scripts-team@mit.edu> 5 Build-Depends: cdbs,debhelper (>= 7.0.50~), config-package-dev, munin-node6 Standards-Version: 3.9. 15 Build-Depends: debhelper (>= 7.0.50~), config-package-dev, munin-node 6 Standards-Version: 3.9.4 7 7 Homepage: http://scripts.mit.edu/ 8 8 -
branches/fc19-dev/host/debian/scripts-vm-host/debian/rules
r1912 r2434 1 1 #!/usr/bin/make -f 2 3 DEB_DIVERT_FILES_scripts-vm-host = /etc/conserver/conserver.cf.divert 4 DEB_TRANSFORM_FILES_scripts-vm-host = /etc/munin/munin-node.conf.divert 5 6 include /usr/share/cdbs/1/rules/debhelper.mk 7 include /usr/share/cdbs/1/rules/config-package.mk 8 2 %: 3 dh $@ --with config-package -
branches/fc19-dev/lvs/debian/config/etc/ha.d/ha.cf
r1610 r2434 10 10 node rack-forward 11 11 node rack-backward 12 node stanley-kubrick 12 13 crm respawn -
branches/fc19-dev/lvs/debian/config/etc/ha.d/ldirectord-finger.sh
r1374 r2434 1 1 #!/bin/bash 2 2 3 ulimit -v 10240 3 ulimit -v 102400 4 4 5 5 read line -
branches/fc19-dev/lvs/debian/config/etc/ha.d/ldirectord-http.sh
r2052 r2434 1 1 #!/bin/bash 2 2 3 ulimit -v 10240 3 ulimit -v 102400 4 4 5 5 # Read and ignore the request -
branches/fc19-dev/server/common/oursrc/nss_nonlocal/Makefile.am
r1825 r2434 2 2 libnss_nonlocal_la_SOURCES = \ 3 3 nonlocal-passwd.c nonlocal-group.c nonlocal-shadow.c \ 4 nonlocal.h nsswitch-internal.h 4 nonlocal.h nsswitch-internal.h walk_nss.h 5 5 libnss_nonlocal_la_LDFLAGS = \ 6 6 -version-info 2:0:0 \ … … 11 11 rm -f $(DESTDIR)$(libdir)/libnss_nonlocal.so 12 12 rm -f $(DESTDIR)$(libdir)/libnss_nonlocal.la 13 14 uninstall-local: 15 rm -f $(DESTDIR)$(libdir)/libnss_nonlocal.so.* -
branches/fc19-dev/server/common/oursrc/nss_nonlocal/configure.ac
r1825 r2434 1 AC_INIT([nss_nonlocal], [2. 0], [andersk@mit.edu])1 AC_INIT([nss_nonlocal], [2.1], [andersk@mit.edu]) 2 2 AC_CANONICAL_TARGET 3 3 AM_INIT_AUTOMAKE([-Wall -Werror foreign]) … … 7 7 AC_DISABLE_STATIC 8 8 AC_PROG_CC 9 AC_PROG_INSTALL 9 m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) 10 10 AC_PROG_LIBTOOL 11 11 -
branches/fc19-dev/server/common/oursrc/nss_nonlocal/nonlocal-group.c
r1825 r2434 25 25 26 26 #define _GNU_SOURCE 27 27 28 #include <sys/types.h> 28 #include <unistd.h>29 #include <stdlib.h>30 #include <stdint.h>31 #include <string.h>32 29 #include <dlfcn.h> 33 #include <stdio.h>34 #include <syslog.h>35 30 #include <errno.h> 36 #include <pwd.h>37 31 #include <grp.h> 38 32 #include <nss.h> 33 #include <pwd.h> 34 #include <stdbool.h> 35 #include <stddef.h> 36 #include <stdlib.h> 37 #include <string.h> 38 #include <syslog.h> 39 #include <unistd.h> 40 39 41 #include "nsswitch-internal.h" 40 42 #include "nonlocal.h" … … 170 172 } 171 173 174 static bool grent_initialized = false; 172 175 static service_user *grent_startp, *grent_nip; 173 176 static void *grent_fct_start; … … 194 197 return status; 195 198 196 if ( grent_fct_start == NULL)199 if (!grent_initialized) { 197 200 __nss_group_nonlocal_lookup(&grent_startp, grent_fct_name, 198 201 &grent_fct_start); 202 __sync_synchronize(); 203 grent_initialized = true; 204 } 199 205 grent_nip = grent_startp; 200 206 grent_fct.ptr = grent_fct_start; … … 208 214 const struct walk_nss w = { 209 215 .lookup = &__nss_group_nonlocal_lookup, .fct_name = "endgrent", 210 .status = &status 216 .status = &status, .all_values = 1, 211 217 }; 212 218 const __typeof__(&_nss_nonlocal_endgrent) self = NULL; … … 356 362 const struct walk_nss w = { 357 363 .lookup = &__nss_group_nonlocal_lookup, .fct_name = "initgroups_dyn", 358 .status = &status, . errnop = errnop364 .status = &status, .all_values = 1, .errnop = errnop 359 365 }; 360 366 const __typeof__(&_nss_nonlocal_initgroups_dyn) self = NULL; … … 445 451 #include "walk_nss.h" 446 452 #undef args 447 if (status != NSS_STATUS_SUCCESS) 453 if (status == NSS_STATUS_NOTFOUND || status == NSS_STATUS_UNAVAIL) 454 return NSS_STATUS_SUCCESS; 455 else if (status != NSS_STATUS_SUCCESS) 448 456 return status; 449 457 -
branches/fc19-dev/server/common/oursrc/nss_nonlocal/nonlocal-passwd.c
r1825 r2434 26 26 27 27 #define _GNU_SOURCE 28 28 29 #include <sys/types.h> 30 #include <dlfcn.h> 31 #include <errno.h> 32 #include <nss.h> 33 #include <pwd.h> 34 #include <stdbool.h> 35 #include <stddef.h> 36 #include <stdlib.h> 37 #include <string.h> 38 #include <syslog.h> 29 39 #include <unistd.h> 30 #include <stdlib.h> 31 #include <stdint.h> 32 #include <string.h> 33 #include <dlfcn.h> 34 #include <stdio.h> 35 #include <syslog.h> 36 #include <errno.h> 37 #include <pwd.h> 38 #include <grp.h> 39 #include <nss.h> 40 40 41 #include "nsswitch-internal.h" 41 42 #include "nonlocal.h" … … 162 163 163 164 165 static bool pwent_initialized = false; 164 166 static service_user *pwent_startp, *pwent_nip; 165 167 static void *pwent_fct_start; … … 186 188 return status; 187 189 188 if ( pwent_fct_start == NULL)190 if (!pwent_initialized) { 189 191 __nss_passwd_nonlocal_lookup(&pwent_startp, pwent_fct_name, 190 192 &pwent_fct_start); 193 __sync_synchronize(); 194 pwent_initialized = true; 195 } 191 196 pwent_nip = pwent_startp; 192 197 pwent_fct.ptr = pwent_fct_start; … … 200 205 const struct walk_nss w = { 201 206 .lookup = &__nss_passwd_nonlocal_lookup, .fct_name = "endpwent", 202 .status = &status 207 .status = &status, .all_values = 1, 203 208 }; 204 209 const __typeof__(&_nss_nonlocal_endpwent) self = NULL; -
branches/fc19-dev/server/common/oursrc/nss_nonlocal/nonlocal-shadow.c
r1825 r2434 24 24 25 25 #define _GNU_SOURCE 26 26 27 #include <sys/types.h> 27 #include <unistd.h> 28 #include <dlfcn.h> 29 #include <errno.h> 30 #include <nss.h> 31 #include <shadow.h> 32 #include <stdbool.h> 33 #include <stddef.h> 28 34 #include <stdlib.h> 29 #include <stdint.h>30 35 #include <string.h> 31 #include <dlfcn.h>32 #include <stdio.h>33 36 #include <syslog.h> 34 #include <errno.h>35 #include <shadow.h>36 #include <nss.h>37 37 38 38 #include "nsswitch-internal.h" … … 59 59 60 60 61 static bool spent_initialized = false; 61 62 static service_user *spent_startp, *spent_nip; 62 63 static void *spent_fct_start; … … 83 84 return status; 84 85 85 if ( spent_fct_start == NULL)86 if (!spent_initialized) { 86 87 __nss_shadow_nonlocal_lookup(&spent_startp, spent_fct_name, 87 88 &spent_fct_start); 89 __sync_synchronize(); 90 spent_initialized = true; 91 } 88 92 spent_nip = spent_startp; 89 93 spent_fct.ptr = spent_fct_start; … … 114 118 { 115 119 enum nss_status status; 120 121 char *nonlocal_ignore = getenv(NONLOCAL_IGNORE_ENV); 122 if (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0') 123 return NSS_STATUS_UNAVAIL; 124 116 125 if (spent_nip == NULL) { 117 126 status = _nss_nonlocal_setspent(0); -
branches/fc19-dev/server/common/oursrc/nss_nonlocal/nonlocal.h
r1825 r2434 50 50 struct walk_nss { 51 51 enum nss_status *status; 52 int all_values; 52 53 int (*lookup)(service_user **ni, const char *fct_name, 53 54 void **fctp) internal_function; -
branches/fc19-dev/server/common/oursrc/nss_nonlocal/walk_nss.h
r1825 r2434 1 /* 2 * walk_nss.h 3 * NSS walking template for nss_nonlocal proxy 4 * 5 * Copyright © 2011 Anders Kaseorg <andersk@mit.edu> and Tim Abbott 6 * <tabbott@mit.edu> 7 * 8 * This file is part of nss_nonlocal. 9 * 10 * nss_nonlocal is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU Lesser General Public License 12 * as published by the Free Software Foundation; either version 2.1 of 13 * the License, or (at your option) any later version. 14 * 15 * nss_nonlocal is distributed in the hope that it will be useful, but 16 * WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 * Lesser General Public License for more details. 19 * 20 * You should have received a copy of the GNU Lesser General Public 21 * License along with nss_nonlocal; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 23 * 02110-1301 USA 24 */ 25 1 26 { 2 static service_user *startp = NULL; 3 static void *fct_start = NULL; 27 static bool initialized = false; 28 static service_user *startp; 29 static void *fct_start; 4 30 5 31 service_user *nip; … … 10 36 int old_errno = errno; 11 37 12 if (fct_start == NULL && 13 w.lookup(&startp, w.fct_name, &fct_start) != 0) { 14 *w.status = NSS_STATUS_UNAVAIL; 15 goto walk_nss_out; 38 if (!initialized) { 39 if (w.lookup(&startp, w.fct_name, &fct_start) != 0) { 40 *w.status = NSS_STATUS_UNAVAIL; 41 goto walk_nss_out; 42 } 43 __sync_synchronize(); 44 initialized = true; 16 45 } 17 46 … … 51 80 goto walk_nss_morebuf; 52 81 } 53 } while (__nss_next(&nip, w.fct_name, &fct.ptr, *w.status, 0) == 0); 82 } while (__nss_next(&nip, w.fct_name, &fct.ptr, *w.status, w.all_values) == 83 0); 54 84 55 85 if (w.buf != NULL && *w.status != NSS_STATUS_SUCCESS) { -
branches/fc19-dev/server/fedora/config/etc/aliases
r2328 r2434 89 89 90 90 # Person who should get root's mail 91 root: andersk@mit.edu, quentin@mit.edu, geofft+root@mit.edu, mitchb@mit.edu, ezyang@mit.edu, xavid@mit.edu, adehnert-sipb@mit.edu, achernya@mit.edu, glasgall@mit.edu 91 root: andersk@mit.edu, quentin@mit.edu, geofft+root@mit.edu, mitchb@mit.edu, ezyang@mit.edu, xavid@mit.edu, adehnert-sipb@mit.edu, achernya@mit.edu, glasgall@mit.edu, tboning@mit.edu 92 92 93 93 scripts: root … … 105 105 # ro21531: spam to rosmosis.net: added 2011-06-25, see mail to -root 2011-06-03 106 106 ro21531: /dev/null 107 # buechley: not responsive to mail sent by -root on 2013-05-14, added 2013-07-04 108 buechley: /dev/null 107 109 108 110 # Temporary to clear the queue -
branches/fc19-dev/server/fedora/config/etc/httpd/vhosts.d/ties.conf
r1863 r2434 19 19 Include conf.d/vhosts-common-ssl.conf 20 20 SSLCertificateFile /etc/pki/tls/certs/ties.pem 21 SSLCertificateChainFile /etc/pki/tls/certs/ties.pem 21 22 SSLCertificateKeyFile /etc/pki/tls/private/scripts.key 22 23 </VirtualHost> … … 30 31 Include conf.d/vhosts-common-ssl-cert.conf 31 32 SSLCertificateFile /etc/pki/tls/certs/ties.pem 33 SSLCertificateChainFile /etc/pki/tls/certs/ties.pem 32 34 SSLCertificateKeyFile /etc/pki/tls/private/scripts.key 33 35 </VirtualHost> -
branches/fc19-dev/server/fedora/config/etc/pki/tls/certs/ties.pem
r2194 r2434 1 From mitcert@MIT.EDU Mon May 14 09:29:28 20122 Date: Mon, 14 May 2012 09:29:26 -04003 From: mitcert@MIT.EDU4 To: achernya@mit.edu5 Subject: [help.mit.edu #1987094] certificate renewal for scripts-vhost ties.mit.edu6 7 Certificate:8 Data:9 Version: 3 (0x2)10 Serial Number:11 ad:4d:c7:9a:02:c8:7e:1c:b7:4d:e1:c4:bc:c8:69:fe12 Signature Algorithm: sha1WithRSAEncryption13 Issuer: C=US, ST=Massachusetts, O=Massachusetts Institute of Technology, OU=MIT Certification Authority14 Validity15 Not Before: May 12 16:00:00 2012 GMT16 Not After : May 14 16:00:00 2013 GMT17 Subject: C=US, ST=Massachusetts, L=Cambridge, O=Massachusetts Institute of Technology, OU=scripts.mit.edu web hosting service, CN=ties.mit.edu/emailAddress=scripts@mit.edu18 Subject Public Key Info:19 Public Key Algorithm: rsaEncryption20 RSA Public Key: (4096 bit)21 Modulus (4096 bit):22 00:bf:a3:f2:7b:98:cc:16:a7:57:e6:92:85:34:56:23 f1:e3:62:83:9e:6a:4f:35:9d:f0:cf:89:87:73:e3:24 93:f7:b7:01:57:38:6e:e9:fc:59:4d:24:eb:a7:17:25 47:ca:2c:51:0e:45:c8:b7:68:c9:0e:32:26:e0:91:26 d3:06:5c:8c:7c:0e:6c:99:0c:b2:46:05:0f:4d:f1:27 b0:c7:5e:35:06:62:fe:2a:d6:0f:1b:2c:b5:02:24:28 4c:c3:06:71:ec:94:ca:1d:aa:af:7e:b9:2d:c0:55:29 4b:cc:bc:51:3d:76:68:5b:d3:ed:35:d0:03:ba:1b:30 6c:f3:a0:d8:d3:dc:6b:44:b0:5e:01:51:d3:02:cc:31 4a:da:52:12:de:35:31:69:16:5a:48:8b:0f:ce:ad:32 4d:e4:d5:8b:11:36:7f:87:1c:fd:84:da:43:2e:87:33 2f:41:70:ac:ad:df:54:c0:ed:f6:21:51:fa:c5:06:34 f0:1b:eb:a1:b0:bf:4d:1c:42:34:8a:d5:6f:f7:25:35 66:73:8f:60:c4:d7:8d:33:91:f4:46:3a:97:09:59:36 01:ff:c3:64:94:40:48:30:68:f0:6e:03:26:74:c2:37 a1:b3:d7:cb:94:fc:6e:53:8a:2a:9e:fd:b1:4f:c4:38 74:56:25:63:1f:aa:bd:95:25:78:9c:45:46:1b:0c:39 21:71:eb:84:94:d0:b2:f1:da:52:f6:d1:7f:63:1d:40 08:23:52:5f:c2:f9:4d:ac:a4:44:e5:9a:54:70:fc:41 c9:fc:d4:d4:b7:1d:75:95:00:e3:bf:3e:4c:f3:43:42 c3:96:c7:09:2a:29:45:12:d2:31:d6:79:4c:8a:e7:43 54:27:22:c6:80:ae:87:23:56:f1:8d:49:9b:c8:fa:44 ed:33:5b:5f:56:76:c8:0f:7e:85:14:69:c4:48:31:45 07:39:a5:34:81:f2:6b:15:50:22:fb:bb:2c:ad:4b:46 84:ea:55:64:f7:de:56:9d:d0:b6:d0:7d:1e:1b:51:47 50:37:44:94:e6:c4:15:eb:45:31:f1:b3:ec:0f:b3:48 a9:0c:f8:1c:47:c7:51:00:05:ef:ee:b0:3d:9f:7e:49 07:a7:38:e8:83:4c:3d:db:34:b6:24:0c:90:57:c0:50 f9:d0:64:14:8a:93:47:9b:41:f5:a3:14:1d:9e:18:51 5d:d5:d8:66:af:f5:f3:c8:2f:bc:a7:02:a7:ef:dc:52 f0:0e:c7:47:8d:2e:d6:a8:62:42:93:5b:7c:f5:35:53 f8:31:10:7b:38:d4:40:24:68:81:13:27:cb:fb:76:54 0e:d1:99:14:d8:d5:eb:f7:69:64:8f:af:8f:82:bb:55 24:29:f9:d4:29:1d:ce:e6:14:ba:4c:8b:09:ff:46:56 ce:8b:6d57 Exponent: 65537 (0x10001)58 X509v3 extensions:59 X509v3 Basic Constraints:60 CA:FALSE61 Netscape Cert Type:62 SSL Client, SSL Server, S/MIME63 X509v3 Extended Key Usage:64 TLS Web Server Authentication, E-mail Protection, TLS Web Client Authentication65 X509v3 Key Usage:66 Digital Signature, Non Repudiation, Key Encipherment67 X509v3 Subject Key Identifier:68 CB:11:B7:01:5F:86:55:4F:45:5E:AB:27:69:BE:E1:3C:89:7A:55:6269 X509v3 CRL Distribution Points:70 URI:http://ca.mit.edu/ca/mitserver.crl71 72 Signature Algorithm: sha1WithRSAEncryption73 23:ec:34:e2:79:a4:07:a4:12:8f:ce:72:42:7f:c7:30:4a:93:74 7f:de:52:9f:76:0c:6b:41:fd:d5:09:45:33:84:9d:b4:6c:ec:75 de:53:61:4d:78:06:34:3d:d2:2d:4b:16:0a:86:77:13:47:78:76 4b:7e:4b:f6:fc:64:1d:13:5e:7a:dc:06:47:3a:34:74:7c:ee:77 39:c0:5a:b2:9b:f3:b0:1e:5a:93:3e:a3:61:67:52:b2:db:13:78 a2:ed:8c:d1:40:fe:1d:8e:53:e2:d5:e3:d4:f2:b2:d2:3f:8f:79 f4:5f:a1:44:19:b8:6b:2d:86:5a:5c:d7:4f:11:11:3b:ae:dc:80 93:9281 1 -----BEGIN CERTIFICATE----- 82 MIIFADCCBGmgAwIBAgIRAK1Nx5oCyH4ct03hxLzIaf4wDQYJKoZIhvcNAQEFBQAw 83 ezELMAkGA1UEBhMCVVMxFjAUBgNVBAgTDU1hc3NhY2h1c2V0dHMxLjAsBgNVBAoT 84 JU1hc3NhY2h1c2V0dHMgSW5zdGl0dXRlIG9mIFRlY2hub2xvZ3kxJDAiBgNVBAsT 85 G01JVCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xMjA1MTIxNjAwMDBaFw0x 86 MzA1MTQxNjAwMDBaMIHOMQswCQYDVQQGEwJVUzEWMBQGA1UECBMNTWFzc2FjaHVz 87 ZXR0czESMBAGA1UEBxMJQ2FtYnJpZGdlMS4wLAYDVQQKEyVNYXNzYWNodXNldHRz 88 IEluc3RpdHV0ZSBvZiBUZWNobm9sb2d5MSwwKgYDVQQLEyNzY3JpcHRzLm1pdC5l 89 ZHUgd2ViIGhvc3Rpbmcgc2VydmljZTEVMBMGA1UEAxMMdGllcy5taXQuZWR1MR4w 90 HAYJKoZIhvcNAQkBFg9zY3JpcHRzQG1pdC5lZHUwggIiMA0GCSqGSIb3DQEBAQUA 91 A4ICDwAwggIKAoICAQC/o/J7mMwWp1fmkoU0VvHjYoOeak81nfDPiYdz45P3twFX 92 OG7p/FlNJOunF0fKLFEORci3aMkOMibgkdMGXIx8DmyZDLJGBQ9N8bDHXjUGYv4q 93 1g8bLLUCJEzDBnHslModqq9+uS3AVUvMvFE9dmhb0+010AO6G2zzoNjT3GtEsF4B 94 UdMCzEraUhLeNTFpFlpIiw/OrU3k1YsRNn+HHP2E2kMuhy9BcKyt31TA7fYhUfrF 95 BvAb66Gwv00cQjSK1W/3JWZzj2DE140zkfRGOpcJWQH/w2SUQEgwaPBuAyZ0wqGz 96 18uU/G5Tiiqe/bFPxHRWJWMfqr2VJXicRUYbDCFx64SU0LLx2lL20X9jHQgjUl/C 97 +U2spETlmlRw/Mn81NS3HXWVAOO/PkzzQ8OWxwkqKUUS0jHWeUyK51QnIsaArocj 98 VvGNSZvI+u0zW19WdsgPfoUUacRIMQc5pTSB8msVUCL7uyytS4TqVWT33lad0LbQ 99 fR4bUVA3RJTmxBXrRTHxs+wPs6kM+BxHx1EABe/usD2ffgenOOiDTD3bNLYkDJBX 100 wPnQZBSKk0ebQfWjFB2eGF3V2Gav9fPIL7ynAqfv3PAOx0eNLtaoYkKTW3z1Nfgx 101 EHs41EAkaIETJ8v7dg7RmRTY1ev3aWSPr4+CuyQp+dQpHc7mFLpMiwn/Rs6LbQID 102 AQABo4GrMIGoMAkGA1UdEwQCMAAwEQYJYIZIAYb4QgEBBAQDAgXgMCcGA1UdJQQg 103 MB4GCCsGAQUFBwMBBggrBgEFBQcDBAYIKwYBBQUHAwIwCwYDVR0PBAQDAgXgMB0G 104 A1UdDgQWBBTLEbcBX4ZVT0VeqydpvuE8iXpVYjAzBgNVHR8ELDAqMCigJqAkhiJo 105 dHRwOi8vY2EubWl0LmVkdS9jYS9taXRzZXJ2ZXIuY3JsMA0GCSqGSIb3DQEBBQUA 106 A4GBACPsNOJ5pAekEo/OckJ/xzBKk3/eUp92DGtB/dUJRTOEnbRs7N5TYU14BjQ9 107 0i1LFgqGdxNHeEt+S/b8ZB0TXnrcBkc6NHR87jnAWrKb87AeWpM+o2FnUrLbE6Lt 108 jNFA/h2OU+LV49TystI/j/RfoUQZuGsthlpc108RETuu3JOS 2 MIIGYTCCBUmgAwIBAgIQI5gKWQk3UljigHOh09s9djANBgkqhkiG9w0BAQUFADBR 3 MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSW50ZXJuZXQyMREwDwYDVQQLEwhJbkNv 4 bW1vbjEbMBkGA1UEAxMSSW5Db21tb24gU2VydmVyIENBMB4XDTEzMDUwMzAwMDAw 5 MFoXDTE2MDUwMjIzNTk1OVowgdAxCzAJBgNVBAYTAlVTMQ4wDAYDVQQREwUwMjEz 6 OTELMAkGA1UECBMCTWExEjAQBgNVBAcTCUNhbWJyaWRnZTEdMBsGA1UECRMUNzcg 7 TWFzc2FjaHVzZXR0cyBBdmUxLjAsBgNVBAoTJU1hc3NhY2h1c2V0dHMgSW5zdGl0 8 dXRlIG9mIFRlY2hub2xvZ3kxKjAoBgNVBAsUIUluZm9ybWF0aW9uIFNlcnZpY2Vz 9 ICYgVGVjaG5vbG9neTEVMBMGA1UEAxMMdGllcy5taXQuZWR1MIICIjANBgkqhkiG 10 9w0BAQEFAAOCAg8AMIICCgKCAgEAv6Pye5jMFqdX5pKFNFbx42KDnmpPNZ3wz4mH 11 c+OT97cBVzhu6fxZTSTrpxdHyixRDkXIt2jJDjIm4JHTBlyMfA5smQyyRgUPTfGw 12 x141BmL+KtYPGyy1AiRMwwZx7JTKHaqvfrktwFVLzLxRPXZoW9PtNdADuhts86DY 13 09xrRLBeAVHTAsxK2lIS3jUxaRZaSIsPzq1N5NWLETZ/hxz9hNpDLocvQXCsrd9U 14 wO32IVH6xQbwG+uhsL9NHEI0itVv9yVmc49gxNeNM5H0RjqXCVkB/8NklEBIMGjw 15 bgMmdMKhs9fLlPxuU4oqnv2xT8R0ViVjH6q9lSV4nEVGGwwhceuElNCy8dpS9tF/ 16 Yx0II1JfwvlNrKRE5ZpUcPzJ/NTUtx11lQDjvz5M80PDlscJKilFEtIx1nlMiudU 17 JyLGgK6HI1bxjUmbyPrtM1tfVnbID36FFGnESDEHOaU0gfJrFVAi+7ssrUuE6lVk 18 995WndC20H0eG1FQN0SU5sQV60Ux8bPsD7OpDPgcR8dRAAXv7rA9n34Hpzjog0w9 19 2zS2JAyQV8D50GQUipNHm0H1oxQdnhhd1dhmr/XzyC+8pwKn79zwDsdHjS7WqGJC 20 k1t89TX4MRB7ONRAJGiBEyfL+3YO0ZkU2NXr92lkj6+PgrskKfnUKR3O5hS6TIsJ 21 /0bOi20CAwEAAaOCAbMwggGvMB8GA1UdIwQYMBaAFEhPWvovSppe4FDza3tVpd71 22 vjRdMB0GA1UdDgQWBBTLEbcBX4ZVT0VeqydpvuE8iXpVYjAOBgNVHQ8BAf8EBAMC 23 BaAwDAYDVR0TAQH/BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw 24 ZwYDVR0gBGAwXjBSBgwrBgEEAa4jAQQDAQEwQjBABggrBgEFBQcCARY0aHR0cHM6 25 Ly93d3cuaW5jb21tb24ub3JnL2NlcnQvcmVwb3NpdG9yeS9jcHNfc3NsLnBkZjAI 26 BgZngQwBAgIwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2NybC5pbmNvbW1vbi5v 27 cmcvSW5Db21tb25TZXJ2ZXJDQS5jcmwwbwYIKwYBBQUHAQEEYzBhMDkGCCsGAQUF 28 BzAChi1odHRwOi8vY2VydC5pbmNvbW1vbi5vcmcvSW5Db21tb25TZXJ2ZXJDQS5j 29 cnQwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmluY29tbW9uLm9yZzAXBgNVHREE 30 EDAOggx0aWVzLm1pdC5lZHUwDQYJKoZIhvcNAQEFBQADggEBADRUIF72igqavvwi 31 VQ1YLk1pNOM5oLbwATaJ+fCrnVN7ul4IZmEKgp/LXBDxjqreA7Js7W4IgSFRmcCc 32 Ho7H1UF6i9GdjiyhTpBq6p97GxkcKCAm2rG7Hmdp2NM+AouypbghH25mvuiQDWpK 33 AOoYnjiEhiQOeKGqR1oR+LFTGfclxarasdtUkVWh0c4eYG3QJYYbF3D6xFa1Pwt5 34 k65Qul8GV/vZ+/rexQd6olwXN8n6KZNXfSmbzbDZTga/woDeMotbPeLaEv0nTsoD 35 G2j/rOF6bo3YrVm7jwMPt/Pcnq48QQn31ERknB66BHjVLM5/UC67qlGcxseuUi3S 36 uEge8pQ= 109 37 -----END CERTIFICATE----- 110 38 -----BEGIN CERTIFICATE----- 39 MIIEwzCCA6ugAwIBAgIQf3HB06ImsNKxE/PmgWdkPjANBgkqhkiG9w0BAQUFADBv 40 MQswCQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFk 41 ZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYDVQQDExlBZGRUcnVzdCBF 42 eHRlcm5hbCBDQSBSb290MB4XDTEwMTIwNzAwMDAwMFoXDTIwMDUzMDEwNDgzOFow 43 UTELMAkGA1UEBhMCVVMxEjAQBgNVBAoTCUludGVybmV0MjERMA8GA1UECxMISW5D 44 b21tb24xGzAZBgNVBAMTEkluQ29tbW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcN 45 AQEBBQADggEPADCCAQoCggEBAJd8x8j+s+kgaqOkT46ONFYGs3psqhCbSGErNpBp 46 4zQKR6e7e96qavvrgpWPyh1/r3WmqEzaIGdhGg2GwcrBh6+sTuTeYhsvnbGYr8YB 47 +xdw26wUWexvPzN/ppgL5OI4r/V/hW0OdASd9ieGx5uP53EqCPQDAkBjJH1AV49U 48 4FR+thNIYfHezg69tvpNmLLZDY15puCqzQyRmqXfq3O7yhR4XEcpocrFup/H2mD3 49 /+d/8tnaoS0PSRan0wCSz4pH2U341ZVm03T5gGMAT0yEFh+z9SQfoU7e6JXWsgsJ 50 iyxrx1wvjGPJmctSsWJ7cwFif2Ns2Gig7mqojR8p89AYrK0CAwEAAaOCAXcwggFz 51 MB8GA1UdIwQYMBaAFK29mHo0tCb3+sQmVO8DveAky1QaMB0GA1UdDgQWBBRIT1r6 52 L0qaXuBQ82t7VaXe9b40XTAOBgNVHQ8BAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB 53 /wIBADARBgNVHSAECjAIMAYGBFUdIAAwRAYDVR0fBD0wOzA5oDegNYYzaHR0cDov 54 L2NybC51c2VydHJ1c3QuY29tL0FkZFRydXN0RXh0ZXJuYWxDQVJvb3QuY3JsMIGz 55 BggrBgEFBQcBAQSBpjCBozA/BggrBgEFBQcwAoYzaHR0cDovL2NydC51c2VydHJ1 56 c3QuY29tL0FkZFRydXN0RXh0ZXJuYWxDQVJvb3QucDdjMDkGCCsGAQUFBzAChi1o 57 dHRwOi8vY3J0LnVzZXJ0cnVzdC5jb20vQWRkVHJ1c3RVVE5TR0NDQS5jcnQwJQYI 58 KwYBBQUHMAGGGWh0dHA6Ly9vY3NwLnVzZXJ0cnVzdC5jb20wDQYJKoZIhvcNAQEF 59 BQADggEBAJNmIYB0RYVLwqvOMrAp/t3f1iRbvwNqb1A+DhuzDYijW+7EpBI7Vu8G 60 f89/IZVWO0Ex/uGqk9KV85UNPEerylwmrT7x+Yw0bhG+9GfjAkn5pnx7ZCXdF0by 61 UOPjCiE6SSTNxoRlaGdosEUtR5nNnKuGKRFy3NacNkN089SXnlag/l9AWNLV1358 62 xY4asgRckmYOha0uBs7Io9jrFCeR3s8XMIFTtmYSrTfk9e+WXCAONumsYn0ZgYr1 63 kGGmSavOPN/mymTugmU5RZUWukEGAJi6DFZh5MbGhgHPZqkiKQLWPc/EKo2Z3vsJ 64 FJ4O0dXG14HdrSSrrAcF4h1ow3BmX9M= 65 -----END CERTIFICATE----- -
branches/fc19-dev/server/fedora/config/etc/postfix/blocked_users
r2391 r2434 3 3 bsu 4 4 delian 5 buechley -
branches/fc19-dev/server/fedora/config/etc/ssh/sshd_config
r2251 r2434 6 6 GSSAPICleanupCredentials yes 7 7 GSSAPIStrictAcceptorCheck no 8 GSSAPIKeyExchange yes 8 9 UsePAM yes 9 10 AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES -
branches/fc19-dev/server/fedora/specs/nss_nonlocal.spec
r1825 r2434 2 2 Group: System Environment/Libraries 3 3 Name: nss_nonlocal 4 Version: 2. 04 Version: 2.1 5 5 Release: 1 6 6 URL: http://debathena.mit.edu/nss_nonlocal/ … … 63 63 %changelog 64 64 65 * Thu Jun 13 2013 Anders Kaseorg <andersk@mit.edu> 2.1-1 66 - New upstream version. 67 65 68 * Tue Mar 29 2011 Anders Kaseorg <andersk@mit.edu> 2.0-1 66 69 - New upstream version.
Note: See TracChangeset
for help on using the changeset viewer.