From 6af2ce624481ffe0c7389341d5b4774bf3e7ccff Mon Sep 17 00:00:00 2001 From: Alasdair G Kergon Date: Thu, 18 Feb 2016 01:14:56 +0000 Subject: [PATCH] lvmdbusd: Rename module to lvmdbusd --- daemons/lvmdbusd/Makefile.in | 4 ++-- daemons/lvmdbusd/__init__.py | 2 +- daemons/lvmdbusd/lvmdbusd | 4 ++-- daemons/lvmdbusd/{lvmdbus.py => lvmdbusd.py} | 0 4 files changed, 5 insertions(+), 5 deletions(-) rename daemons/lvmdbusd/{lvmdbus.py => lvmdbusd.py} (100%) 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 . -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 . 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 similarity index 100% rename from daemons/lvmdbusd/lvmdbus.py rename to daemons/lvmdbusd/lvmdbusd.py -- 2.43.5