From 824bdad62c27e166b1d8b4b93d509f7e11d452b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl?= Date: Fri, 21 Aug 2015 19:42:08 +0200 Subject: [PATCH] add zfs backing store support --- lib/ansible/modules/extras/cloud/lxc/lxc_container.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/ansible/modules/extras/cloud/lxc/lxc_container.py b/lib/ansible/modules/extras/cloud/lxc/lxc_container.py index bf5fcf3cecf..6010a4fd33b 100644 --- a/lib/ansible/modules/extras/cloud/lxc/lxc_container.py +++ b/lib/ansible/modules/extras/cloud/lxc/lxc_container.py @@ -454,6 +454,9 @@ LXC_BACKING_STORE = { ], 'overlayfs': [ 'lv_name', 'vg_name', 'fs_type', 'fs_size', 'thinpool', 'zfs_root' + ], + 'zfs': [ + 'lv_name', 'vg_name', 'fs_type', 'fs_size', 'thinpool' ] }