]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Rename qemud/ directory to daemon/
authorDaniel P. Berrange <berrange@redhat.com>
Tue, 15 Sep 2009 14:49:29 +0000 (15:49 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Mon, 21 Sep 2009 13:41:42 +0000 (14:41 +0100)
* qemud/: Rename to daemon/
* Makefile.am, configure.in, src/Makefile.am, src/remote_internal.c,
  tests/Makefile.am, tests/eventtest.c: s/qemud/daemon/ where needed

41 files changed:
Makefile.am
configure.in
daemon/.gitignore [moved from qemud/.gitignore with 100% similarity]
daemon/Makefile.am [moved from qemud/Makefile.am with 100% similarity]
daemon/THREADING.txt [moved from qemud/THREADING.txt with 100% similarity]
daemon/default-network.xml [moved from qemud/default-network.xml with 100% similarity]
daemon/dispatch.c [moved from qemud/dispatch.c with 100% similarity]
daemon/dispatch.h [moved from qemud/dispatch.h with 100% similarity]
daemon/event.c [moved from qemud/event.c with 100% similarity]
daemon/event.h [moved from qemud/event.h with 100% similarity]
daemon/libvirtd.aug [moved from qemud/libvirtd.aug with 100% similarity]
daemon/libvirtd.conf [moved from qemud/libvirtd.conf with 100% similarity]
daemon/libvirtd.init.in [moved from qemud/libvirtd.init.in with 100% similarity]
daemon/libvirtd.logrotate.in [moved from qemud/libvirtd.logrotate.in with 100% similarity]
daemon/libvirtd.policy-0 [moved from qemud/libvirtd.policy-0 with 100% similarity]
daemon/libvirtd.policy-1 [moved from qemud/libvirtd.policy-1 with 100% similarity]
daemon/libvirtd.sasl [moved from qemud/libvirtd.sasl with 100% similarity]
daemon/libvirtd.sysconf [moved from qemud/libvirtd.sysconf with 100% similarity]
daemon/libvirtd_qemu.aug [moved from qemud/libvirtd_qemu.aug with 100% similarity]
daemon/mdns.c [moved from qemud/mdns.c with 100% similarity]
daemon/mdns.h [moved from qemud/mdns.h with 100% similarity]
daemon/qemud.c [moved from qemud/qemud.c with 100% similarity]
daemon/qemud.h [moved from qemud/qemud.h with 100% similarity]
daemon/remote.c [moved from qemud/remote.c with 100% similarity]
daemon/remote.h [moved from qemud/remote.h with 100% similarity]
daemon/remote_dispatch_args.h [moved from qemud/remote_dispatch_args.h with 100% similarity]
daemon/remote_dispatch_prototypes.h [moved from qemud/remote_dispatch_prototypes.h with 100% similarity]
daemon/remote_dispatch_ret.h [moved from qemud/remote_dispatch_ret.h with 100% similarity]
daemon/remote_dispatch_table.h [moved from qemud/remote_dispatch_table.h with 100% similarity]
daemon/remote_generate_stubs.pl [moved from qemud/remote_generate_stubs.pl with 100% similarity]
daemon/remote_protocol.c [moved from qemud/remote_protocol.c with 100% similarity]
daemon/remote_protocol.h [moved from qemud/remote_protocol.h with 100% similarity]
daemon/remote_protocol.x [moved from qemud/remote_protocol.x with 100% similarity]
daemon/rpcgen_fix.pl [moved from qemud/rpcgen_fix.pl with 100% similarity]
daemon/test_libvirtd.aug [moved from qemud/test_libvirtd.aug with 100% similarity]
daemon/test_libvirtd_qemu.aug [moved from qemud/test_libvirtd_qemu.aug with 100% similarity]
src/Makefile.am
src/remote_internal.c
tests/Makefile.am
tests/daemon-conf
tests/eventtest.c

index beddca725c94ad5c3005f318a95ce43771b61e73..17fbf439e1ed33282f754ffc9c783bf3bb781081 100644 (file)
@@ -3,7 +3,7 @@
 LCOV = lcov
 GENHTML = genhtml
 
-SUBDIRS = gnulib/lib include src qemud tools proxy docs gnulib/tests \
+SUBDIRS = gnulib/lib include src daemon tools proxy docs gnulib/tests \
   python tests po examples/domain-events/events-c examples/hellolibvirt
 
 ACLOCAL_AMFLAGS = -I m4 -I gnulib/m4
@@ -40,7 +40,7 @@ tests:
 
 cov: clean-cov
        mkdir $(top_builddir)/coverage
-       $(LCOV) -c -o $(top_builddir)/coverage/libvirt.info.tmp -d $(top_srcdir)/src  -d $(top_srcdir)/qemud -d $(top_srcdir)/tests
+       $(LCOV) -c -o $(top_builddir)/coverage/libvirt.info.tmp -d $(top_srcdir)/src  -d $(top_srcdir)/daemon -d $(top_srcdir)/tests
        $(LCOV) -r $(top_builddir)/coverage/libvirt.info.tmp -o $(top_builddir)/coverage/libvirt.info *usr*
        rm $(top_builddir)/coverage/libvirt.info.tmp
        $(GENHTML) -s -t "libvirt" -o $(top_builddir)/coverage --legend $(top_builddir)/coverage/libvirt.info
index da0223e141df843325c395dc737c922124615647..5d498ae85279803f3bfa28c4d4a006f2b705fc35 100644 (file)
@@ -1694,7 +1694,7 @@ AC_OUTPUT(Makefile src/Makefile include/Makefile docs/Makefile \
           po/Makefile.in \
          include/libvirt/Makefile include/libvirt/libvirt.h \
          python/Makefile python/tests/Makefile \
-          qemud/Makefile \
+          daemon/Makefile \
           tools/Makefile \
           tests/Makefile proxy/Makefile \
           tests/xml2sexprdata/Makefile \
similarity index 100%
rename from qemud/.gitignore
rename to daemon/.gitignore
similarity index 100%
rename from qemud/Makefile.am
rename to daemon/Makefile.am
similarity index 100%
rename from qemud/THREADING.txt
rename to daemon/THREADING.txt
similarity index 100%
rename from qemud/dispatch.c
rename to daemon/dispatch.c
similarity index 100%
rename from qemud/dispatch.h
rename to daemon/dispatch.h
similarity index 100%
rename from qemud/event.c
rename to daemon/event.c
similarity index 100%
rename from qemud/event.h
rename to daemon/event.h
similarity index 100%
rename from qemud/libvirtd.aug
rename to daemon/libvirtd.aug
similarity index 100%
rename from qemud/libvirtd.conf
rename to daemon/libvirtd.conf
similarity index 100%
rename from qemud/libvirtd.sasl
rename to daemon/libvirtd.sasl
similarity index 100%
rename from qemud/mdns.c
rename to daemon/mdns.c
similarity index 100%
rename from qemud/mdns.h
rename to daemon/mdns.h
similarity index 100%
rename from qemud/qemud.c
rename to daemon/qemud.c
similarity index 100%
rename from qemud/qemud.h
rename to daemon/qemud.h
similarity index 100%
rename from qemud/remote.c
rename to daemon/remote.c
similarity index 100%
rename from qemud/remote.h
rename to daemon/remote.h
similarity index 100%
rename from qemud/rpcgen_fix.pl
rename to daemon/rpcgen_fix.pl
index 463252e32061994a5b40a2aa1c8ea29ccd3996c8..b1d01ba42fc2ca2ad52fbdc3cab1416e8ee7045b 100644 (file)
@@ -4,7 +4,7 @@ INCLUDES = \
           -I$(top_srcdir)/gnulib/lib -I../gnulib/lib \
           -I../include \
           -I@top_srcdir@/include \
-          -I@top_srcdir@/qemud \
+          -I@top_srcdir@/daemon \
           $(LIBXML_CFLAGS) \
           $(LIBSSH2_CFLAGS) \
           $(XEN_CFLAGS) \
@@ -100,8 +100,8 @@ SECRET_CONF_SOURCES =                                               \
 REMOTE_DRIVER_SOURCES =                                                \
                gnutls_1_0_compat.h                             \
                remote_internal.c remote_internal.h             \
-               ../qemud/remote_protocol.c                      \
-               ../qemud/remote_protocol.h
+               ../daemon/remote_protocol.c                     \
+               ../daemon/remote_protocol.h
 
 # Mock driver, covering domains, storage, networks, etc
 TEST_DRIVER_SOURCES =                                          \
index dd7b31e8aa32b052eb023f118b94309ce0e6f9d3..3ffda35c944e216220d5dd7175d0978a9e570d9c 100644 (file)
@@ -5650,7 +5650,7 @@ remoteAuthenticate (virConnectPtr conn, struct private_data *priv, int in_open,
 
 #if HAVE_SASL
 /*
- * NB, keep in sync with similar method in qemud/remote.c
+ * NB, keep in sync with similar method in remote/remote.c
  */
 static char *addrToString(struct sockaddr_storage *sa, socklen_t salen)
 {
index 74e98d113a6487ecaa77b1ca05e4cdb49a173f28..5b99c5dfde96210561d7e728797cc4865ca4cce4 100644 (file)
@@ -147,7 +147,7 @@ TESTS += nodedevxml2xmltest
 
 TESTS += interfacexml2xmltest
 
-path_add = $$abs_top_builddir/src$(PATH_SEPARATOR)$$abs_top_builddir/qemud
+path_add = $$abs_top_builddir/src$(PATH_SEPARATOR)$$abs_top_builddir/daemon
 
 # NB, automake < 1.10 does not provide the real
 # abs_top_{src/build}dir variables, so don't rely
@@ -261,7 +261,7 @@ qparamtest_LDADD = $(LDADDS)
 
 if WITH_LIBVIRTD
 eventtest_SOURCES = \
-       eventtest.c testutils.h testutils.c ../qemud/event.c
+       eventtest.c testutils.h testutils.c ../daemon/event.c
 eventtest_LDADD = -lrt $(LDADDS)
 endif
 
index 4fa82a42ec9b061fba59dea71b5477929eeb4885..071497e1e4632f8a74f419922b1805ccc221bedd 100755 (executable)
@@ -13,7 +13,7 @@ test -z "$abs_top_srcdir" && abs_top_srcdir=$(pwd)/..
 grep '^#define WITH_QEMU 1' $CONFIG_HEADER > /dev/null ||
   skip_test_ "configured without QEMU support"
 
-conf="$abs_top_srcdir/qemud/libvirtd.conf"
+conf="$abs_top_srcdir/daemon/libvirtd.conf"
 
 # Ensure that each commented out PARAMETER = VALUE line has the expected form.
 grep '[a-z_]  *=  *[^ ]' "$conf" | grep -vE '^#[a-z_]+ = ' \
index da3438828570266f0d81e44871ad4e434488e1f1..90c60bb9ad964994ca0c22be38de94f8bc4468c4 100644 (file)
@@ -31,7 +31,7 @@
 #include "threads.h"
 #include "logging.h"
 #include "util.h"
-#include "../qemud/event.h"
+#include "../daemon/event.h"
 
 #define NUM_FDS 5
 #define NUM_TIME 5