Skip to content

Commit 2948f2a

Browse files
committed
Updated MAINTAINERS contact details
- Removed copyright comments from every file - Updated PyPi contact details Signed-off-by: Aravinda Vishwanathapura <[email protected]>
1 parent 644249e commit 2948f2a

17 files changed

+11
-144
lines changed

MAINTAINERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ consult [email protected] and not any specific individual privately.
1010

1111
glustercli-python Maintainers
1212
=============================
13-
Aravinda VK <[email protected]>
13+
Aravinda Vishwanathapura <[email protected]>

docs/index.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
glustercli-python
22
==================
33

4-
This is the official python bindings for `GlusterFS <http://www.gluster.org>`_
5-
CLI.
4+
Python bindings for `GlusterFS <http://www.gluster.org>`_ CLI.
65

76
Hello World
87
-----------

gluster/cli/__init__.py

-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
112

123
from . import volume
134
from . import bitrot

gluster/cli/bitrot.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
2+
113
from .utils import bitrot_execute, bitrot_execute_xml, GlusterCmdException
124
from .parsers import parse_bitrot_scrub_status
135

gluster/cli/bricks.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
2+
113
from .utils import volume_execute, volume_execute_xml
124
from .parsers import parse_remove_brick_status
135

gluster/cli/georep.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
2+
113
from .utils import georep_execute, georep_execute_xml, gluster_system_execute
124
from .parsers import parse_georep_config, parse_georep_status
135
from . import volume

gluster/cli/heal.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
2+
113
from .utils import heal_execute, heal_execute_xml, GlusterCmdException
124
from .parsers import parse_heal_statistics, parse_heal_info
135

gluster/cli/nfs_ganesha.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
2+
113
from .utils import gluster_execute
124

135

gluster/cli/parsers.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
2+
113
import xml.etree.cElementTree as etree
124

135
ParseError = etree.ParseError if hasattr(etree, 'ParseError') else SyntaxError

gluster/cli/peer.py

-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
112

123
from .utils import peer_execute, peer_execute_xml, gluster_execute_xml, GlusterCmdException
134
from .parsers import parse_peer_status, parse_pool_list

gluster/cli/quota.py

-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
112

123
from .utils import quota_execute, quota_execute_xml, volume_execute
134
from .parsers import parse_quota_list_paths, parse_quota_list_objects

gluster/cli/rebalance.py

-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
112

123
from .utils import volume_execute, volume_execute_xml
134
from .parsers import parse_rebalance_status

gluster/cli/snapshot.py

-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
112

123
from .utils import snapshot_execute, snapshot_execute_xml
134
from .parsers import (parse_snapshot_status,

gluster/cli/utils.py

-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
112

123
import subprocess
134
from contextlib import contextmanager

gluster/cli/volume.py

-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
112

123
from .utils import volume_execute, volume_execute_xml, GlusterCmdException
134
from .parsers import (parse_volume_info,

gluster/metrics/__init__.py

-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
4-
# This file is part of GlusterFS.
5-
#
6-
# This file is licensed to you under your choice of the GNU Lesser
7-
# General Public License, version 3 or any later version (LGPLv3 or
8-
# later), or the GNU General Public License, version 2 (GPLv2), in all
9-
# cases as published by the Free Software Foundation.
10-
#
112

123
from .process import local_processes
134
from .utilization import local_utilization

setup.py

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
1-
#!/usr/bin/python
2-
#
3-
# Copyright (c) 2016 Red Hat, Inc.
4-
#
5-
# This file is part of libgfapi-python project which is a
6-
# subproject of GlusterFS ( www.gluster.org)
7-
#
8-
# This file is licensed to you under your choice of the GNU Lesser
9-
# General Public License, version 3 or any later version (LGPLv3 or
10-
# later), or the GNU General Public License, version 2 (GPLv2), in all
11-
# cases as published by the Free Software Foundation.
12-
131
import os
142
import re
153
from setuptools import setup, find_packages
@@ -26,9 +14,9 @@ def read(fname):
2614
description='Python bindings for GlusterFS CLI and Metrics collection',
2715
long_description=read('README.rst'),
2816
license='GPLv2 or LGPLv3+',
29-
author='Red Hat, Inc.',
30-
author_email='[email protected]',
31-
url='http://www.gluster.org',
17+
author='Aravinda Vishwanathapura',
18+
author_email='[email protected]',
19+
url='https://github.com/gluster/glustercli-python',
3220
packages=find_packages(),
3321
classifiers=[
3422
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)