diff options
author | Joe Digilio <jgd-github@metajoe.com> | 2011-01-22 11:05:13 -0800 |
---|---|---|
committer | Joe Digilio <jgd-github@metajoe.com> | 2011-01-22 11:05:13 -0800 |
commit | 7e88c5454e7cce16874b69e402779af9412fd055 (patch) | |
tree | 9b1aec7efdb5ea4bc7feb1f9b57c142c20906fa4 /doc | |
parent | d0c45fb8abbb7f77b7d947587443240ccbf03d41 (diff) | |
download | bcfg2-7e88c5454e7cce16874b69e402779af9412fd055.tar.gz bcfg2-7e88c5454e7cce16874b69e402779af9412fd055.tar.bz2 bcfg2-7e88c5454e7cce16874b69e402779af9412fd055.zip |
Support ability to pass parameters to Upstart services
Diffstat (limited to 'doc')
-rw-r--r-- | doc/appendix/guides/ubuntu.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/appendix/guides/ubuntu.txt b/doc/appendix/guides/ubuntu.txt index 54aa62cce..8ffda7166 100644 --- a/doc/appendix/guides/ubuntu.txt +++ b/doc/appendix/guides/ubuntu.txt @@ -477,3 +477,19 @@ Dynamic (web) reports ===================== See installation instructions at :ref:`server-reports-install` + +Upstart +======= + +Upstart services are defined like this: + +.. code-block:: xml + + <Service name="cron" status="on" type="upstart"/> + +Some Upstart services require additional parameters, like network-interface and bridge-network-interface: + +.. code-block:: xml + + <Service name="network-interface" status="on" type="upstart" parameters="INTERFACE=eth0"/> + <Service name="bridge-network-interface" status="on" type="upstart" parameters="INTERFACE=br0"/>
\ No newline at end of file |