From Fedora Project Wiki

(initial pass)
 
(redirect page to new infra-docs)
(One intermediate revision by one other user not shown)
Line 1: Line 1:
This describes the steps necessary to rename a project in Fedora Hosted.
{{header|infra}}
This SOP has moved to the fedora Infrastructure SOP git repo. Please see the current document at: http://infrastructure.fedoraproject.org/infra/docs/fedorahostedrename.txt


== Rename the Trac instance ==
For changes, questions or comments, please contact anyone in the Fedora Infrastructure team.  
<pre>
cd /srv/web/trac/projects
mv oldname newname
cd newname/conf
sed -i -e 's/oldname/newname/' trac.ini
cd ..
sudo -u apache trac-admin .
  resync
</pre>


== Rename the git / svn / hg / ... directory ==
<pre>
cd /git
mv oldname.git newname.git
</pre>


== Rename any old releases directories ==
[[Category:Infrastructure SOPs]]
<pre>
cd /srv/web/releases/o/l/oldname
(somehow, the newname releases dir gets created; if there were old releases, move them to the new location).
</pre>
 
== Rename the group in FAS ==
See abadger1999.
 
 
 
 
[[Category:Infrastructure_SOPs]]

Revision as of 18:15, 19 December 2011

This SOP has moved to the fedora Infrastructure SOP git repo. Please see the current document at: http://infrastructure.fedoraproject.org/infra/docs/fedorahostedrename.txt

For changes, questions or comments, please contact anyone in the Fedora Infrastructure team.