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