Changes between Version 10 and Version 11 of SystemAdministration
- Timestamp:
- Jan 8, 2015, 4:55:05 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SystemAdministration
v10 v11 39 39 Subversion is used for version control; the repositories are stored in /home/svn. Repositories are accessed securely from subversion clients (such as !NetBeans) using the URL: 40 40 * svn+ssh://jupiter2.raidtech.net/home/svn/<repositoryname> 41 Separate repositories are used for each sub-team that does not need to share code with other sub-teams (e.g. gameapp, sensors, etc.) [BR]41 Separate repositories are used for each sub-team that does not need to share code with other sub-teams (e.g. gameapp, sensors, etc.). Experiments should be done using the test repository. 42 42 === Creating a repository: 43 43 {{{ … … 73 73 == Trac Wiki and Defect Tracking 74 74 [http://trac.edgewall.org/wiki/TracGuide Trac] provides a host of features including trouble ticketing, a software repository browser, and a general-purpose wiki. The plugins [http://trac-hacks.org/wiki/PermRedirectPlugin PermRedirect] and [http://trac-hacks.org/wiki/AccountManagerPlugin AccountManager] are installed for additional features. Important directories/files for configuration include: 75 76 75 * /var/local/trac 77 76 * /var/local/trac/conf/trac.ini 77 Note that a symbolic link should be created in each of the trac sub-directories back to the VERSION file to avoid an annoying error message: 78 {{{ 79 ln -s /var/local/trac/VERSION conf/VERSION 80 ln -s /var/local/trac/VERSION db/VERSION 81 ln -s /var/local/trac/VERSION htdocs/VERSION 82 ln -s /var/local/trac/VERSION log/VERSION 83 ln -s /var/local/trac/VERSION plugins/VERSION 84 ln -s /var/local/trac/VERSION templates/VERSION 85 }}}