summaryrefslogtreecommitdiffstats
path: root/doc/installation/source.txt
diff options
context:
space:
mode:
authorFabian Affolter <fabian@bernewireless.net>2010-11-09 00:15:43 +0100
committerFabian Affolter <fabian@bernewireless.net>2010-11-09 00:15:43 +0100
commit391406c85d86dc931f3fdb2483a14d0f1e7e6355 (patch)
tree97fe00f6a9dcf5d821139766b213418d57b5d31b /doc/installation/source.txt
parent553c693618321fad2a88030b16d42d3253befaec (diff)
downloadbcfg2-391406c85d86dc931f3fdb2483a14d0f1e7e6355.tar.gz
bcfg2-391406c85d86dc931f3fdb2483a14d0f1e7e6355.tar.bz2
bcfg2-391406c85d86dc931f3fdb2483a14d0f1e7e6355.zip
doc: Massive update
Diffstat (limited to 'doc/installation/source.txt')
-rw-r--r--doc/installation/source.txt64
1 files changed, 64 insertions, 0 deletions
diff --git a/doc/installation/source.txt b/doc/installation/source.txt
new file mode 100644
index 000000000..e21f7150f
--- /dev/null
+++ b/doc/installation/source.txt
@@ -0,0 +1,64 @@
+.. -*- mode: rst -*-
+
+.. _Download: http://trac.mcs.anl.gov/projects/bcfg2/wiki/Download
+.. _GPG: http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x75BF2C177F7D197E
+.. _GPGKey: ftp://ftp.mcs.anl.gov/pub/bcfg/bcfg2-1.1.0.tar.gz.gpg
+.. _Tarball: ftp://ftp.mcs.anl.gov/pub/bcfg/bcfg2-1.1.0.tar.gz
+
+.. |md5sum| replace:: 13593938daf7e8b9a81cb4b677dc7f99
+.. |version| replace:: 1.1.0
+.. |rel_date| replace:: 9/27/10
+
+.. _source:
+
+Download
+========
+
+Tarball
+-------
+
+The Bcfg2 source tarball can be grabbed from the Download_ page.
+
+========= ======== ======= ============== =====================
+Version URL GPG key Release Date md5sum
+========= ======== ======= ============== =====================
+|version| Tarball_ GPGKey_ |rel_date| |md5sum|
+========= ======== ======= ============== =====================
+
+The full command to use with ``wget`` are listed below. Please
+replace ``<version>`` with |version|. ::
+
+ wget ftp://ftp.mcs.anl.gov/pub/bcfg/bcfg2-<version>.tar.gz
+ wget ftp://ftp.mcs.anl.gov/pub/bcfg/bcfg2-<version>.tar.gz.gpg
+
+All tarballs are signed with GPG key `7F7D197E <GPGKey>`_. You can verify
+your download by importing the key and running ::
+
+ $ gpg --recv-keys 0x75bf2c177f7d197e
+ $ gpg --verify bcfg2-<version>.tar.gz.gpg bcfg2-<version>.tar.gz
+
+For older or prepreleases please visit the Download_ wiki page.
+
+
+Git checkout
+------------
+
+You can also get the latest (possibly broken) code via git ::
+
+ git clone git://git.mcs.anl.gov/bcfg2.git
+
+Installation from source
+========================
+
+If you are working with the release tarball of Bcfg2 you need to
+untar it before you can go on with the installation ::
+
+ tar -xzf bcfg2-<version>.tar.gz
+
+Now you can build Bcfg2 with. If you are working with a SVN checkout
+no <version> need to be specified. ::
+
+ cd bcfg2-<version>
+ python setup.py install --prefix=/install/prefix
+
+This will install both the client and server on that machine.