1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

lvmdbusd: Rename module to lvmdbusd

This commit is contained in:
Alasdair G Kergon 2016-02-18 01:14:56 +00:00
parent 887e96ded7
commit 6af2ce6244
4 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@ srcdir = @srcdir@
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
top_builddir = @top_builddir@ top_builddir = @top_builddir@
lvmdbusdir = $(python3dir)/lvmdbus lvmdbusdir = $(python3dir)/lvmdbusd
LVMDBUS_SRCDIR_FILES = \ LVMDBUS_SRCDIR_FILES = \
automatedproperties.py \ automatedproperties.py \
@ -27,7 +27,7 @@ LVMDBUS_SRCDIR_FILES = \
job.py \ job.py \
loader.py \ loader.py \
lvmdb.py \ lvmdb.py \
lvmdbus.py \ lvmdbusd.py \
lvm_shell_proxy.py \ lvm_shell_proxy.py \
lv.py \ lv.py \
manager.py \ manager.py \

View File

@ -7,4 +7,4 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
from .lvmdbus import main from .lvmdbusd import main

View File

@ -10,7 +10,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys import sys
import lvmdbus import lvmdbusd
if __name__ == '__main__': if __name__ == '__main__':
sys.exit(lvmdbus.main()) sys.exit(lvmdbusd.main())