diff --git a/daemons/ganeti-confd b/daemons/ganeti-confd index 82734ef1f0b6b9e4b6417123f03ed3cda7c05668..c793159426dd1debc037d9c0eb3e889746a0e9f8 100755 --- a/daemons/ganeti-confd +++ b/daemons/ganeti-confd @@ -94,7 +94,7 @@ class ConfdInotifyEventHandler(pyinotify.ProcessEvent): filename=constants.CLUSTER_CONF_FILE): """Constructor for ConfdInotifyEventHandler - @type watch_manager: L{pyinotify.WatchManager} + @type watch_manager: pyinotify.WatchManager @param watch_manager: ganeti-confd inotify watch manager @type callback: function accepting a boolean @param callback: function to call when an inotify event happens diff --git a/epydoc.conf b/epydoc.conf index b10a844c0613ec4e3a3ca4fe5af7daa8851e72cf..11069a3647bca565d64b2083db416cbc66c61160 100644 --- a/epydoc.conf +++ b/epydoc.conf @@ -8,7 +8,7 @@ output: html # note: the wildcards means the directories should be cleaned up after each # run, otherwise there will be stale '*c' (compiled) files that will not be # parsable and will break the epydoc run -modules: ganeti, scripts/gnt-*, daemons/ganeti-* +modules: ganeti, scripts/gnt-*, daemons/ganeti-confd, daemons/ganeti-masterd, daemons/ganeti-noded, daemons/ganeti-rapi, daemons/ganeti-watcher graph: all diff --git a/lib/cmdlib.py b/lib/cmdlib.py index 787b9ecada24a8a5ad4a2fc29e0b49907c13bd47..9f604eed937b0a8c6515fe2c89f05a1ecfc42b17 100644 --- a/lib/cmdlib.py +++ b/lib/cmdlib.py @@ -1095,7 +1095,7 @@ class LUVerifyCluster(LogicalUnit): """A class representing the logical and physical status of a node. @ivar volumes: a structure as returned from - L{ganeti.utils.GetVolumeList} (runtime) + L{ganeti.backend.GetVolumeList} (runtime) @ivar instances: a list of running instances (runtime) @ivar pinst: list of configured primary instances (config) @ivar sinst: list of configured secondary instances (config) @@ -4000,7 +4000,7 @@ def _CheckNodesFreeDisk(lu, nodenames, requested): @type lu: C{LogicalUnit} @param lu: a logical unit from which we get configuration data @type nodenames: C{list} - @param node: the list of node names to check + @param nodenames: the list of node names to check @type requested: C{int} @param requested: the amount of disk in MiB to check for @raise errors.OpPrereqError: if the node doesn't have enough disk, or diff --git a/lib/hypervisor/hv_base.py b/lib/hypervisor/hv_base.py index 86b85c9bb06fb709a28b9eaded520e3ddfc18ed6..db8bcb49a952f72fbd374e4d20cd918b62d86fb2 100644 --- a/lib/hypervisor/hv_base.py +++ b/lib/hypervisor/hv_base.py @@ -237,7 +237,7 @@ class BaseHypervisor(object): def MigrateInstance(self, instance, target, live): """Migrate an instance. - @type instance: L{object.Instance} + @type instance: L{objects.Instance} @param instance: the instance to be migrated @type target: string @param target: hostname (usually ip) of the target node diff --git a/lib/hypervisor/hv_chroot.py b/lib/hypervisor/hv_chroot.py index f033d5e7861a042b835f70235eb5a80c09f7e2b0..cf40c5936d551456bd4120784da65660dfbd0bda 100644 --- a/lib/hypervisor/hv_chroot.py +++ b/lib/hypervisor/hv_chroot.py @@ -272,7 +272,7 @@ class ChrootManager(hv_base.BaseHypervisor): def MigrateInstance(self, instance, target, live): """Migrate an instance. - @type instance: L{object.Instance} + @type instance: L{objects.Instance} @param instance: the instance to be migrated @type target: string @param target: hostname (usually ip) of the target node diff --git a/lib/hypervisor/hv_fake.py b/lib/hypervisor/hv_fake.py index 850e568926dbb929758c28e106a8e76a00b33625..d607d0de8fe45b4b3ed942fc48a26ffb43229018 100644 --- a/lib/hypervisor/hv_fake.py +++ b/lib/hypervisor/hv_fake.py @@ -241,7 +241,7 @@ class FakeHypervisor(hv_base.BaseHypervisor): def MigrateInstance(self, instance, target, live): """Migrate an instance. - @type instance: L{object.Instance} + @type instance: L{objects.Instance} @param instance: the instance to be migrated @type target: string @param target: hostname (usually ip) of the target node