[Python-checkins] python/nondist/peps pep-0347.txt,1.14,1.15

loewis@users.sourceforge.net loewis at users.sourceforge.net
Sun Aug 21 15:03:25 CEST 2005


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21811

Modified Files:
	pep-0347.txt 
Log Message:
Elaborate on admin access.


Index: pep-0347.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0347.txt,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- pep-0347.txt	16 Aug 2005 18:17:00 -0000	1.14
+++ pep-0347.txt	21 Aug 2005 13:03:15 -0000	1.15
@@ -110,6 +110,27 @@
 the SF account names, so that people can be better identified
 in log messages.
 
+Administrator Access
+--------------------
+
+Administrator access to the pythondev account should be granted
+to all current admins of the Python SF project. To distinguish
+between shell login and svnserve login, admins need to maintain
+two keys. Using OpenSSH, the following procedure can be
+used to create a second key::
+
+  cd .ssh
+  ssh-keygen -t DSA -f pythondev -C <user>@pythondev
+  vi config
+
+In the config file, the following lines need to be added::
+
+  Host pythondev
+    Hostname dinsdale.python.org
+    User pythondev
+    IdentityFile ~/.ssh/pythondev
+
+Then, shell login becomes possible through "ssh pythondev".
 
 Downloading the CVS Repository
 ------------------------------
@@ -201,7 +222,7 @@
 breaks because it runs out of memory.
 
 The current SF project admins should get write access to the 
-authorized_keys file of the pythondev account.
+authorized_keys2 file of the pythondev account.
 
 
 Disable CVS
@@ -214,7 +235,7 @@
 
 
 Discussion
-----------
+==========
 
 Several alternatives had been suggested to the procedure above.
 The rejected alternatives are shortly discussed here:



More information about the Python-checkins mailing list