From: Christian Brauner Date: Tue, 15 Aug 2017 18:02:45 +0000 (+0200) Subject: storage: add overlay as valid backend X-Git-Tag: lxc-2.1.0~23^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e45d720486113a8f6029a51dae1109527880ebb6;p=thirdparty%2Flxc.git storage: add overlay as valid backend Signed-off-by: Christian Brauner --- diff --git a/src/lxc/storage/storage_utils.c b/src/lxc/storage/storage_utils.c index 77d427951..728a11211 100644 --- a/src/lxc/storage/storage_utils.c +++ b/src/lxc/storage/storage_utils.c @@ -445,6 +445,7 @@ bool is_valid_storage_type(const char *type) strcmp(type, "loop") == 0 || strcmp(type, "lvm") == 0 || strcmp(type, "nbd") == 0 || + strcmp(type, "overlay") == 0 || strcmp(type, "overlayfs") == 0 || strcmp(type, "rbd") == 0 || strcmp(type, "zfs") == 0)