summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlasdair G Kergon <agk@redhat.com>2016-02-18 01:14:56 +0000
committerAlasdair G Kergon <agk@redhat.com>2016-02-18 01:14:56 +0000
commit6af2ce624481ffe0c7389341d5b4774bf3e7ccff (patch)
tree28f343d519d13554a5fdd8bf165b09ae0295a000
parent887e96ded7c46428af44ee324a6bd586112d6474 (diff)
downloadlvm2-6af2ce624481ffe0c7389341d5b4774bf3e7ccff.tar.gz
lvmdbusd: Rename module to lvmdbusd
-rw-r--r--daemons/lvmdbusd/Makefile.in4
-rw-r--r--daemons/lvmdbusd/__init__.py2
-rwxr-xr-xdaemons/lvmdbusd/lvmdbusd4
-rw-r--r--daemons/lvmdbusd/lvmdbusd.py (renamed from daemons/lvmdbusd/lvmdbus.py)0
4 files changed, 5 insertions, 5 deletions
diff --git a/daemons/lvmdbusd/Makefile.in b/daemons/lvmdbusd/Makefile.in
index 6d18564b2..4b6c71c50 100644
--- a/daemons/lvmdbusd/Makefile.in
+++ b/daemons/lvmdbusd/Makefile.in
@@ -15,7 +15,7 @@ srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = @top_builddir@
-lvmdbusdir = $(python3dir)/lvmdbus
+lvmdbusdir = $(python3dir)/lvmdbusd
LVMDBUS_SRCDIR_FILES = \
automatedproperties.py \
@@ -27,7 +27,7 @@ LVMDBUS_SRCDIR_FILES = \
job.py \
loader.py \
lvmdb.py \
- lvmdbus.py \
+ lvmdbusd.py \
lvm_shell_proxy.py \
lv.py \
manager.py \
diff --git a/daemons/lvmdbusd/__init__.py b/daemons/lvmdbusd/__init__.py
index b733884ea..db14fe9f9 100644
--- a/daemons/lvmdbusd/__init__.py
+++ b/daemons/lvmdbusd/__init__.py
@@ -7,4 +7,4 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-from .lvmdbus import main
+from .lvmdbusd import main
diff --git a/daemons/lvmdbusd/lvmdbusd b/daemons/lvmdbusd/lvmdbusd
index 058ddf056..7ea243baa 100755
--- a/daemons/lvmdbusd/lvmdbusd
+++ b/daemons/lvmdbusd/lvmdbusd
@@ -10,7 +10,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
-import lvmdbus
+import lvmdbusd
if __name__ == '__main__':
- sys.exit(lvmdbus.main())
+ sys.exit(lvmdbusd.main())
diff --git a/daemons/lvmdbusd/lvmdbus.py b/daemons/lvmdbusd/lvmdbusd.py
index 43545b2ff..43545b2ff 100644
--- a/daemons/lvmdbusd/lvmdbus.py
+++ b/daemons/lvmdbusd/lvmdbusd.py