Changes between Version 1 and Version 2 of UnixProjectPackage


Ignore:
Timestamp:
Jul 3, 2008, 5:52:47 AM (16 years ago)
Author:
Eric Myers
Comment:

Just fleshing in what we likely need for a project package

Legend:

Unmodified
Added
Removed
Modified
  • UnixProjectPackage

    v1 v2  
    1 Creating page per request of E. Myers
     1[[TOC]]
     2= Unix project package layout =
     3
     4The purpose of this page is to describe what is needed to create a Unix package to install the BOINC software needed to create and run a BOINC project.  The primary idea is to make it easy for anyone who is interested in doing so to install the package, run some initializations scripts, and thus easily create a working BOINC project.
     5
     6This will necessarily involve sorting through all the items listed on the ProjectMain page, and the steps described in the ServerIntro page, to see what can be automated, and what still needs to be done by the project admin "by
     7
     8A BOINC project must be hosted on a Unix computer, but any Unix/Linux distribution should be supported.  It will be useful to have different Linux distros use the same packaging principles and file locations to the extent that this is possible.  Files and directories should be placed in accordance with the guiding principles of the Filesystem Hierarchy Standard, which may be found at http://www.pathname.com/fhs/pub/fhs-2.3.html.   
     9
     10Keep in mind that it is a requirement of rpm packages (and probably Debian as well?) that packages install without any user input or dialogue.   The package only installs the software.  It is then up to the user who creates the project to run <tt>make_project</tt> (or a script which wraps it?) to set up the project. 
     11
     12
     13== Existing Packages ==
     14   * Debian:  http://wiki.debian.org/BOINC/Server
     15   * Fedora/Red Hat: (link here to primary page for Fedora/Red Hat package)
     16 
     17
     18== Project Directory ==
     19
     20Keep in mind that we want to allow for the possibility of more than one project being hosted on the same server.
     21
     22The package should probably create a "boincadm" user and group.   Then there is a "projects" directory under the home directory of that user.  Then <tt>make_project</tt> simply creates the new project under that, as is the default.
     23
     24
     25== Project Initiation ==
     26
     27Is it sufficient to run <tt>make_project</tt> from "boincadm", or is there anything else required first?
     28
     29
     30
     31
     32== Template Files ==
     33
     34What files need to be provided, as templates which the project admin can then edit for their purpose (or which can be initially edited by an installation script)?
     35   * Web server configuration file
     36   * Log rotation config file?
     37
     38
     39