From Fedora Project Wiki

(initial pass)
 
m (Change from .txt to .rst)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
This describes the steps necessary to rename a project in Fedora Hosted.
{{header|infra}}


== Rename the Trac instance ==
{{admon/important|This is important|This SOP has moved to the fedora Infrastructure SOP git repo. Please see the current document at: [http://infrastructure.fedoraproject.org/infra/docs/fedorahostedrename.rst Rename] 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 ==
[[Category:Infrastructure SOPs]]
<pre>
cd /git
mv oldname.git newname.git
</pre>
 
== Rename any old releases directories ==
<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]]

Latest revision as of 19:39, 17 July 2015


Important.png
This is important
This SOP has moved to the fedora Infrastructure SOP git repo. Please see the current document at: Rename For changes, questions or comments, please contact anyone in the Fedora Infrastructure team.