From a48354576e59c6899302e3a99da6067f556ed31b Mon Sep 17 00:00:00 2001 From: Hiroaki Nakamura Date: Thu, 12 May 2016 20:57:16 +0900 Subject: [PATCH] Simplify requirements --- lib/ansible/modules/extras/cloud/lxd/lxd_container.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/ansible/modules/extras/cloud/lxd/lxd_container.py b/lib/ansible/modules/extras/cloud/lxd/lxd_container.py index f5fcb2bcb9..1232f88ef9 100644 --- a/lib/ansible/modules/extras/cloud/lxd/lxd_container.py +++ b/lib/ansible/modules/extras/cloud/lxd/lxd_container.py @@ -59,17 +59,11 @@ options: required: false default: 0 requirements: - - 'lxd >= 2.0 # OS package' - - 'python >= 2.6 # OS Package' - - 'pylxd >= 2.0 # OS or PIP Package from https://github.com/lxc/pylxd' + - 'pylxd >= 2.0' notes: - Containers must have a unique name. If you attempt to create a container with a name that already existed in the users namespace the module will simply return as "unchanged". - - If your distro does not have a package for "python-pylxd", which is a - requirement for this module, it can be installed from source at - "https://github.com/lxc/pylxd" or installed via pip using the package - name pylxd. """ EXAMPLES = """