From 25b91f2c7f5b1cf5915e6451cdc6b4ba738d82e8 Mon Sep 17 00:00:00 2001 From: NiR- Date: Mon, 9 Jun 2014 05:24:09 +0200 Subject: [PATCH] Adding all possible states in the doc and clarifying what keys method does. --- ext/lxc/lxc.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ext/lxc/lxc.c b/ext/lxc/lxc.c index b43732c..36c4961 100644 --- a/ext/lxc/lxc.c +++ b/ext/lxc/lxc.c @@ -440,6 +440,15 @@ container_running_p(VALUE self) * container.state * * Returns a symbol representing the state of the container. + * + * * +:stopped+ + * * +:starting+ + * * +:running+ + * * +:stopping+ + * * +:aborting+ + * * +:freezing+ + * * +:frozen+ + * * +:thawed+ */ static VALUE container_state(VALUE self) @@ -1277,6 +1286,10 @@ container_config_path(VALUE self) * container.keys(key) * * Returns a list of valid sub-keys for the given configuration key. + * + * Keys can be in the format 'lxc.network.', (eg. 'lxc.network.0', + * 'lxc.network.1'). The result shows which keys are valid according to + * type of network interface. */ static VALUE container_keys(VALUE self, VALUE rb_key)