Skip to content
Snippets Groups Projects
Commit 55493d52 authored by Anael Beutot's avatar Anael Beutot
Browse files

Updated documentation.

parent 24b17f90
No related branches found
No related tags found
No related merge requests found
...@@ -8,19 +8,18 @@ See ``bin/cc-node``. ...@@ -8,19 +8,18 @@ See ``bin/cc-node``.
Summary of the steps: Summary of the steps:
Binary:
* First parse command line options and configuration file * First parse command line options and configuration file
* Then register signal handling for ``SIG_USR1`` (reload configuration) and
``SIG_TERM`` (terminate process).
* Switch to a daemon context * Switch to a daemon context
* Reload logging configuration * Instanciate and launch a :class:`ccnode.node.MainLoop`
* Instanciate and launch a :class:`ccnode.node.Node` in background
* Enter main loop that consist of waiting for signals and reloading configuration
if needed.
Organisation of modules/packages Organisation of modules/packages
-------------------------------- --------------------------------
.. tree ../../ccnode | grep -v \.pyc | grep -v \\.\\.
.. code-block:: text .. code-block:: text
|-- config.py |-- config.py
...@@ -29,11 +28,16 @@ Organisation of modules/packages ...@@ -29,11 +28,16 @@ Organisation of modules/packages
| |-- __init__.py | |-- __init__.py
| |-- tags.py | |-- tags.py
|-- hypervisor |-- hypervisor
| |-- domains
| | |-- __init__.py
| | |-- vm_tags.py
| |-- __init__.py | |-- __init__.py
| `-- tags.py | |-- lib.py
| |-- tags.py
|-- __init__.py |-- __init__.py
|-- jobs.py |-- jobs.py
|-- node.py |-- node.py
|-- plugins.py
|-- tags.py |-- tags.py
|-- utils.py |-- utils.py
...@@ -42,10 +46,6 @@ TODO ...@@ -42,10 +46,6 @@ TODO
Node Node
---- ----
Summary of the :class:`ccnode.node.Node` main loop:
* TODO
.. automodule:: ccnode.node .. automodule:: ccnode.node
:members: :members:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment