From b125ff3e83283f231295873118ed7a170f4284d1 Mon Sep 17 00:00:00 2001 From: Prashanth Pai Date: Fri, 22 Dec 2017 17:14:10 +0530 Subject: Expose mounting over unix socket Change-Id: I17078b6d20372c3935f7bcd8c82f55f96096dd87 Signed-off-by: Prashanth Pai --- gluster/gfapi/gfapi.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gluster/gfapi/gfapi.py') diff --git a/gluster/gfapi/gfapi.py b/gluster/gfapi/gfapi.py index 89d8388..d48aa06 100644 --- a/gluster/gfapi/gfapi.py +++ b/gluster/gfapi/gfapi.py @@ -629,7 +629,8 @@ class Volume(object): """ Create a Volume object instance. - :param host: Host with glusterd management daemon running. + :param host: Host with glusterd management daemon running OR + : path to socket file which glusterd is listening on. :param volname: Name of GlusterFS volume to be mounted and used. :param proto: Transport protocol to be used to connect to management daemon. Permitted values are "tcp" and "rdma". @@ -658,7 +659,7 @@ class Volume(object): if None in (volname, host): # TODO: Validate host based on regex for IP/FQDN. raise LibgfapiException("Host and Volume name should not be None.") - if proto not in ('tcp', 'rdma'): + if proto not in ('tcp', 'rdma', 'unix'): raise LibgfapiException("Invalid protocol specified.") if not isinstance(port, (int, long)): raise LibgfapiException("Invalid port specified.") -- cgit