summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSol Jerome <solj@ices.utexas.edu>2010-06-24 15:45:53 +0000
committerSol Jerome <sol.jerome@gmail.com>2010-06-24 14:59:11 -0500
commiteae6b6c8932496b374170e990a756ad1d4ac925c (patch)
treef4e0e2281a658f9ab68cbc30574021205c44ab3a /doc
parent224025473e2f37c684c80556fdeb8102ddaf3b13 (diff)
downloadbcfg2-eae6b6c8932496b374170e990a756ad1d4ac925c.tar.gz
bcfg2-eae6b6c8932496b374170e990a756ad1d4ac925c.tar.bz2
bcfg2-eae6b6c8932496b374170e990a756ad1d4ac925c.zip
Packages: Add RawURL support for APT sources (Patch from Remi Broemeling for Ticket #896)
Signed-off-by: Sol Jerome <sol.jerome@gmail.com> git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5958 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'doc')
-rw-r--r--doc/server/plugins/generators/packages.txt16
1 files changed, 15 insertions, 1 deletions
diff --git a/doc/server/plugins/generators/packages.txt b/doc/server/plugins/generators/packages.txt
index 67c6ac119..75349b3a3 100644
--- a/doc/server/plugins/generators/packages.txt
+++ b/doc/server/plugins/generators/packages.txt
@@ -147,7 +147,7 @@ Yum sources can be similarly specified:
</YUMSource>
</Sources>
-.. note:: There is also a RawURL syntax for specifying sources that
+.. note:: There is also a RawURL syntax for specifying APT or YUM sources that
don't follow the conventional layout:
.. code-block:: xml
@@ -171,6 +171,20 @@ Yum sources can be similarly specified:
</YUMSource>
</Sources>
+ .. code-block:: xml
+
+ <Sources>
+ <APTSource>
+ <Group>ubuntu-lucid</Group>
+ <RawURL>http://hudson-ci.org/debian/binary</RawURL>
+ <Arch>amd64</Arch>
+ </APTSource>
+ <APTSource>
+ <Group>ubuntu-lucid</Group>
+ <RawURL>http://hudson-ci.org/debian/binary</RawURL>
+ <Arch>i386</Arch>
+ </APTSource>
+ </Sources>
Configuration Updates
=====================