savannah-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Savannah-cvs] [344] wording


From: karl
Subject: [Savannah-cvs] [344] wording
Date: Mon, 4 Sep 2017 09:39:42 -0400 (EDT)

Revision: 344
          
http://svn.savannah.gnu.org/viewvc/?view=rev&root=administration&revision=344
Author:   karl
Date:     2017-09-04 09:39:38 -0400 (Mon, 04 Sep 2017)
Log Message:
-----------
wording

Modified Paths:
--------------
    trunk/sviki/AdminSvnImport.mdwn
    trunk/sviki/SvnImportExistingRepo.mdwn

Modified: trunk/sviki/AdminSvnImport.mdwn
===================================================================
--- trunk/sviki/AdminSvnImport.mdwn     2017-08-04 22:29:55 UTC (rev 343)
+++ trunk/sviki/AdminSvnImport.mdwn     2017-09-04 13:39:38 UTC (rev 344)
@@ -25,10 +25,10 @@
     #scp dl.sv.gnu.org:/srv/download/$proj/$dumpfile .
     # or whatever they give, e.g.,
     #wget http://url/to/$dumpfile
-    bzcat $dumpfile | nice svnadmin load /srv/svn/$proj/ 
>/tmp/$proj.svimport.out 2>/tmp/$proj.svimport.err
+    bzcat $dumpfile | nice -19 svnadmin load /srv/svn/$proj/ 
>/tmp/$proj.svimport.out 2>/tmp/$proj.svimport.err
     tail /tmp/$proj.svimport.err
     tail /tmp/$proj.svimport.out
-    rm $dumpfile
+    #rm $dumpfile # when disk gets low ...
 
 Sometimes we may be given a tar of their svn repository.  In this case,
 we must ask for a proper svn dump (produced by `svnadmin dump`).  Using
@@ -54,7 +54,7 @@
 will be restricted by the root umask 022.  These will need to be
 converted to the project group and permissions.
 
-    proj=THEIRPROJECT
+    proj=THEIRPROJECTID
     svnadmin create /srv/svn/$proj
     find /srv/svn/$proj/db -type d -exec chmod g+ws {} +
     find /srv/svn/$proj/db -type d -exec chgrp $proj {} +
@@ -61,8 +61,8 @@
     find /srv/svn/$proj/db -type f -exec chgrp $proj {} +
 
 In particular, be sure to leave the `hooks` directory (along with the
-others) owned by `root:root` and with secure permissions only for the
-root user.
+others) owned by `root:root` and able to be written by root. Whereas the
+`db` directory should be group-writable by the project.
 
 These steps are all done automatically when the repository is created
 through the project web interface.

Modified: trunk/sviki/SvnImportExistingRepo.mdwn
===================================================================
--- trunk/sviki/SvnImportExistingRepo.mdwn      2017-08-04 22:29:55 UTC (rev 
343)
+++ trunk/sviki/SvnImportExistingRepo.mdwn      2017-09-04 13:39:38 UTC (rev 
344)
@@ -23,10 +23,10 @@
 hackers: see [[AdminSvnImport]])
 
 Do not send a tar.gz of your SVN repository. Using a dump is important
-because it's independant of the subversion release.
+because it's independent of the subversion release.
 
 Note: if you just want to upload your initial source code, not your
-whole project history, just use 'svn add' and commit.
+whole project history, just use `svn add` and commit.
 
 #### subtopics:
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]