mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
daemon: move misc libvirtd policy files to src/remote/
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
168bcca95d
commit
21ea3828f7
2
.gitignore
vendored
2
.gitignore
vendored
@ -60,7 +60,6 @@
|
|||||||
/configure.lineno
|
/configure.lineno
|
||||||
/conftest.*
|
/conftest.*
|
||||||
/daemon/libvirtd*.logrotate
|
/daemon/libvirtd*.logrotate
|
||||||
/daemon/libvirtd.policy
|
|
||||||
/docs/aclperms.htmlinc
|
/docs/aclperms.htmlinc
|
||||||
/docs/apibuild.py.stamp
|
/docs/apibuild.py.stamp
|
||||||
/docs/devhelp/libvirt.devhelp
|
/docs/devhelp/libvirt.devhelp
|
||||||
@ -136,6 +135,7 @@
|
|||||||
/src/libvirt_*probes.h
|
/src/libvirt_*probes.h
|
||||||
/src/libvirt_lxc
|
/src/libvirt_lxc
|
||||||
/src/libvirtd
|
/src/libvirtd
|
||||||
|
/src/libvirtd.policy
|
||||||
/src/locking/libxl-lockd.conf
|
/src/locking/libxl-lockd.conf
|
||||||
/src/locking/libxl-sanlock.conf
|
/src/locking/libxl-sanlock.conf
|
||||||
/src/locking/lock_daemon_dispatch_stubs.h
|
/src/locking/lock_daemon_dispatch_stubs.h
|
||||||
|
@ -20,10 +20,6 @@ CLEANFILES =
|
|||||||
|
|
||||||
DISTCLEANFILES =
|
DISTCLEANFILES =
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
libvirtd.policy.in \
|
|
||||||
libvirt.rules \
|
|
||||||
libvirtd.sasl \
|
|
||||||
libvirtd.sysctl \
|
|
||||||
libvirtd.logrotate.in \
|
libvirtd.logrotate.in \
|
||||||
libvirtd.qemu.logrotate.in \
|
libvirtd.qemu.logrotate.in \
|
||||||
libvirtd.lxc.logrotate.in \
|
libvirtd.lxc.logrotate.in \
|
||||||
@ -35,59 +31,18 @@ BUILT_SOURCES =
|
|||||||
|
|
||||||
if WITH_LIBVIRTD
|
if WITH_LIBVIRTD
|
||||||
|
|
||||||
if WITH_POLKIT
|
|
||||||
if WITH_POLKIT0
|
|
||||||
policydir = $(datadir)/PolicyKit/policy
|
|
||||||
policyauth = auth_admin_keep_session
|
|
||||||
else ! WITH_POLKIT0
|
|
||||||
policydir = $(datadir)/polkit-1/actions
|
|
||||||
policyauth = auth_admin_keep
|
|
||||||
rulesdir = $(datadir)/polkit-1/rules.d
|
|
||||||
rulesfile = libvirt.rules
|
|
||||||
endif ! WITH_POLKIT0
|
|
||||||
endif WITH_POLKIT
|
|
||||||
|
|
||||||
libvirtd.policy: libvirtd.policy.in $(top_builddir)/config.status
|
|
||||||
$(AM_V_GEN) sed \
|
|
||||||
-e 's|[@]authaction[@]|$(policyauth)|g' \
|
|
||||||
< $< > $@-t && \
|
|
||||||
mv $@-t $@
|
|
||||||
BUILT_SOURCES += libvirtd.policy
|
|
||||||
|
|
||||||
install-data-local: install-data-sasl install-data-polkit \
|
install-data-local: install-logrotate
|
||||||
install-logrotate install-sysctl
|
|
||||||
$(MKDIR_P) $(DESTDIR)$(localstatedir)/log/libvirt \
|
$(MKDIR_P) $(DESTDIR)$(localstatedir)/log/libvirt \
|
||||||
$(DESTDIR)$(localstatedir)/run/libvirt \
|
$(DESTDIR)$(localstatedir)/run/libvirt \
|
||||||
$(DESTDIR)$(localstatedir)/lib/libvirt
|
$(DESTDIR)$(localstatedir)/lib/libvirt
|
||||||
|
|
||||||
uninstall-local:: uninstall-data-sasl uninstall-data-polkit \
|
uninstall-local:: uninstall-logrotate
|
||||||
uninstall-logrotate uninstall-sysctl
|
|
||||||
rmdir $(DESTDIR)$(localstatedir)/log/libvirt || :
|
rmdir $(DESTDIR)$(localstatedir)/log/libvirt || :
|
||||||
rmdir $(DESTDIR)$(localstatedir)/run/libvirt || :
|
rmdir $(DESTDIR)$(localstatedir)/run/libvirt || :
|
||||||
rmdir $(DESTDIR)$(localstatedir)/lib/libvirt || :
|
rmdir $(DESTDIR)$(localstatedir)/lib/libvirt || :
|
||||||
|
|
||||||
if WITH_POLKIT
|
|
||||||
install-data-polkit::
|
|
||||||
$(MKDIR_P) $(DESTDIR)$(policydir)
|
|
||||||
$(INSTALL_DATA) libvirtd.policy $(DESTDIR)$(policydir)/org.libvirt.unix.policy
|
|
||||||
if ! WITH_POLKIT0
|
|
||||||
$(MKDIR_P) $(DESTDIR)$(rulesdir)
|
|
||||||
$(INSTALL_DATA) $(srcdir)/$(rulesfile) $(DESTDIR)$(rulesdir)/50-libvirt.rules
|
|
||||||
endif ! WITH_POLKIT0
|
|
||||||
|
|
||||||
uninstall-data-polkit::
|
|
||||||
rm -f $(DESTDIR)$(policydir)/org.libvirt.unix.policy
|
|
||||||
rmdir $(DESTDIR)$(policydir) || :
|
|
||||||
if ! WITH_POLKIT0
|
|
||||||
rm -f $(DESTDIR)$(rulesdir)/50-libvirt.rules
|
|
||||||
rmdir $(DESTDIR)$(rulesdir) || :
|
|
||||||
endif ! WITH_POLKIT0
|
|
||||||
|
|
||||||
else ! WITH_POLKIT
|
|
||||||
install-data-polkit::
|
|
||||||
uninstall-data-polkit::
|
|
||||||
endif ! WITH_POLKIT
|
|
||||||
|
|
||||||
LOGROTATE_CONFS = libvirtd.qemu.logrotate libvirtd.lxc.logrotate \
|
LOGROTATE_CONFS = libvirtd.qemu.logrotate libvirtd.lxc.logrotate \
|
||||||
libvirtd.libxl.logrotate libvirtd.uml.logrotate \
|
libvirtd.libxl.logrotate libvirtd.uml.logrotate \
|
||||||
libvirtd.logrotate
|
libvirtd.logrotate
|
||||||
@ -151,43 +106,11 @@ uninstall-logrotate:
|
|||||||
rmdir $(DESTDIR)$(localstatedir)/log/libvirt/uml || :
|
rmdir $(DESTDIR)$(localstatedir)/log/libvirt/uml || :
|
||||||
rmdir $(DESTDIR)$(sysconfdir)/logrotate.d || :
|
rmdir $(DESTDIR)$(sysconfdir)/logrotate.d || :
|
||||||
|
|
||||||
if WITH_SYSCTL
|
|
||||||
# Use $(prefix)/lib rather than $(libdir), since man sysctl.d insists on
|
|
||||||
# /usr/lib/sysctl.d/ even when libdir is /usr/lib64
|
|
||||||
install-sysctl:
|
|
||||||
$(MKDIR_P) $(DESTDIR)$(prefix)/lib/sysctl.d
|
|
||||||
$(INSTALL_DATA) $(srcdir)/libvirtd.sysctl \
|
|
||||||
$(DESTDIR)$(prefix)/lib/sysctl.d/60-libvirtd.conf
|
|
||||||
|
|
||||||
uninstall-sysctl:
|
|
||||||
rm -f $(DESTDIR)$(prefix)/lib/sysctl.d/60-libvirtd.conf
|
|
||||||
rmdir $(DESTDIR)$(prefix)/lib/sysctl.d || :
|
|
||||||
else ! WITH_SYSCTL
|
|
||||||
install-sysctl:
|
|
||||||
uninstall-sysctl:
|
|
||||||
endif ! WITH_SYSCTL
|
|
||||||
|
|
||||||
else ! WITH_LIBVIRTD
|
else ! WITH_LIBVIRTD
|
||||||
install-data-local: install-data-sasl
|
install-data-local:
|
||||||
uninstall-local:: uninstall-data-sasl
|
uninstall-local::
|
||||||
endif ! WITH_LIBVIRTD
|
endif ! WITH_LIBVIRTD
|
||||||
|
|
||||||
# This is needed for clients too, so can't wrap in
|
|
||||||
# the WITH_LIBVIRTD conditional
|
|
||||||
if WITH_SASL
|
|
||||||
install-data-sasl:
|
|
||||||
$(MKDIR_P) $(DESTDIR)$(sysconfdir)/sasl2/
|
|
||||||
$(INSTALL_DATA) $(srcdir)/libvirtd.sasl \
|
|
||||||
$(DESTDIR)$(sysconfdir)/sasl2/libvirt.conf
|
|
||||||
|
|
||||||
uninstall-data-sasl:
|
|
||||||
rm -f $(DESTDIR)$(sysconfdir)/sasl2/libvirt.conf
|
|
||||||
rmdir $(DESTDIR)$(sysconfdir)/sasl2/ || :
|
|
||||||
else ! WITH_SASL
|
|
||||||
install-data-sasl:
|
|
||||||
uninstall-data-sasl:
|
|
||||||
endif ! WITH_SASL
|
|
||||||
|
|
||||||
|
|
||||||
CLEANFILES += $(BUILT_SOURCES)
|
CLEANFILES += $(BUILT_SOURCES)
|
||||||
CLEANFILES += *.cov *.gcov .libs/*.gcda .libs/*.gcno *.gcno *.gcda
|
CLEANFILES += *.cov *.gcov .libs/*.gcda .libs/*.gcno *.gcno *.gcda
|
||||||
|
@ -1378,6 +1378,24 @@ conf_DATA += remote/libvirtd.conf
|
|||||||
|
|
||||||
CLEANFILES += tets_libvirtd.aug
|
CLEANFILES += tets_libvirtd.aug
|
||||||
|
|
||||||
|
if WITH_POLKIT
|
||||||
|
if WITH_POLKIT0
|
||||||
|
policydir = $(datadir)/PolicyKit/policy
|
||||||
|
policyauth = auth_admin_keep_session
|
||||||
|
else ! WITH_POLKIT0
|
||||||
|
policydir = $(datadir)/polkit-1/actions
|
||||||
|
policyauth = auth_admin_keep
|
||||||
|
endif ! WITH_POLKIT0
|
||||||
|
endif WITH_POLKIT
|
||||||
|
|
||||||
|
BUILT_SOURCES += libvirtd.policy
|
||||||
|
|
||||||
|
libvirtd.policy: remote/libvirtd.policy.in $(top_builddir)/config.status
|
||||||
|
$(AM_V_GEN) sed \
|
||||||
|
-e 's|[@]authaction[@]|$(policyauth)|g' \
|
||||||
|
< $< > $@-t && \
|
||||||
|
mv $@-t $@
|
||||||
|
|
||||||
libvirtd_SOURCES = $(LIBVIRTD_SOURCES)
|
libvirtd_SOURCES = $(LIBVIRTD_SOURCES)
|
||||||
|
|
||||||
libvirtd_CFLAGS = \
|
libvirtd_CFLAGS = \
|
||||||
@ -1423,6 +1441,10 @@ EXTRA_DIST += \
|
|||||||
remote/test_libvirtd.aug.in \
|
remote/test_libvirtd.aug.in \
|
||||||
remote/libvirtd.aug \
|
remote/libvirtd.aug \
|
||||||
remote/libvirtd.conf \
|
remote/libvirtd.conf \
|
||||||
|
remote/libvirtd.policy.in \
|
||||||
|
remote/libvirtd.rules \
|
||||||
|
remote/libvirtd.sasl \
|
||||||
|
remote/libvirtd.sysctl \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
%protocol.c: %protocol.x %protocol.h $(srcdir)/rpc/genprotocol.pl
|
%protocol.c: %protocol.x %protocol.h $(srcdir)/rpc/genprotocol.pl
|
||||||
@ -2832,6 +2854,46 @@ SYSVINIT_FILES = $(notdir $(SYSVINIT_FILES_IN:%.in=%))
|
|||||||
EXTRA_DIST += $(SYSVINIT_FILES_IN)
|
EXTRA_DIST += $(SYSVINIT_FILES_IN)
|
||||||
|
|
||||||
if WITH_LIBVIRTD
|
if WITH_LIBVIRTD
|
||||||
|
|
||||||
|
if WITH_SYSCTL
|
||||||
|
# Use $(prefix)/lib rather than $(libdir), since man sysctl.d insists on
|
||||||
|
# /usr/lib/sysctl.d/ even when libdir is /usr/lib64
|
||||||
|
install-sysctl:
|
||||||
|
$(MKDIR_P) $(DESTDIR)$(prefix)/lib/sysctl.d
|
||||||
|
$(INSTALL_DATA) $(srcdir)/remote/libvirtd.sysctl \
|
||||||
|
$(DESTDIR)$(prefix)/lib/sysctl.d/60-libvirtd.conf
|
||||||
|
|
||||||
|
uninstall-sysctl:
|
||||||
|
rm -f $(DESTDIR)$(prefix)/lib/sysctl.d/60-libvirtd.conf
|
||||||
|
rmdir $(DESTDIR)$(prefix)/lib/sysctl.d || :
|
||||||
|
else ! WITH_SYSCTL
|
||||||
|
install-sysctl:
|
||||||
|
uninstall-sysctl:
|
||||||
|
endif ! WITH_SYSCTL
|
||||||
|
|
||||||
|
if WITH_POLKIT
|
||||||
|
install-polkit::
|
||||||
|
$(MKDIR_P) $(DESTDIR)$(policydir)
|
||||||
|
$(INSTALL_DATA) libvirtd.policy $(DESTDIR)$(policydir)/org.libvirt.unix.policy
|
||||||
|
if ! WITH_POLKIT0
|
||||||
|
$(MKDIR_P) $(DESTDIR)$(datadir)/polkit-1/rules.d
|
||||||
|
$(INSTALL_DATA) $(srcdir)/remote/libvirtd.rules \
|
||||||
|
$(DESTDIR)$(datadir)/polkit-1/rules.d/50-libvirt.rules
|
||||||
|
endif ! WITH_POLKIT0
|
||||||
|
|
||||||
|
uninstall-polkit::
|
||||||
|
rm -f $(DESTDIR)$(policydir)/org.libvirt.unix.policy
|
||||||
|
rmdir $(DESTDIR)$(policydir) || :
|
||||||
|
if ! WITH_POLKIT0
|
||||||
|
rm -f $(DESTDIR)$(datadir)/polkit-1/rules.d/50-libvirt.rules
|
||||||
|
rmdir $(DESTDIR)$(datadir)/polkit-1/rules.d || :
|
||||||
|
endif ! WITH_POLKIT0
|
||||||
|
|
||||||
|
else ! WITH_POLKIT
|
||||||
|
install-polkit::
|
||||||
|
uninstall-polkit::
|
||||||
|
endif ! WITH_POLKIT
|
||||||
|
|
||||||
if LIBVIRT_INIT_SCRIPT_RED_HAT
|
if LIBVIRT_INIT_SCRIPT_RED_HAT
|
||||||
install-init:: $(SYSVINIT_FILES) install-sysconfig
|
install-init:: $(SYSVINIT_FILES) install-sysconfig
|
||||||
$(MKDIR_P) $(DESTDIR)$(sysconfdir)/rc.d/init.d
|
$(MKDIR_P) $(DESTDIR)$(sysconfdir)/rc.d/init.d
|
||||||
@ -2851,10 +2913,31 @@ install-init::
|
|||||||
uninstall-init::
|
uninstall-init::
|
||||||
endif ! LIBVIRT_INIT_SCRIPT_RED_HAT
|
endif ! LIBVIRT_INIT_SCRIPT_RED_HAT
|
||||||
else ! WITH_LIBVIRTD
|
else ! WITH_LIBVIRTD
|
||||||
|
install-polkit::
|
||||||
|
uninstall-polkit::
|
||||||
|
install-sysctl::
|
||||||
|
uninstall-sysctl::
|
||||||
install-init::
|
install-init::
|
||||||
uninstall-init::
|
uninstall-init::
|
||||||
endif ! WITH_LIBVIRTD
|
endif ! WITH_LIBVIRTD
|
||||||
|
|
||||||
|
# This is needed for clients too, so can't wrap in
|
||||||
|
# the WITH_LIBVIRTD conditional
|
||||||
|
if WITH_SASL
|
||||||
|
install-sasl:
|
||||||
|
$(MKDIR_P) $(DESTDIR)$(sysconfdir)/sasl2/
|
||||||
|
$(INSTALL_DATA) $(srcdir)/remote/libvirtd.sasl \
|
||||||
|
$(DESTDIR)$(sysconfdir)/sasl2/libvirt.conf
|
||||||
|
|
||||||
|
uninstall-sasl:
|
||||||
|
rm -f $(DESTDIR)$(sysconfdir)/sasl2/libvirt.conf
|
||||||
|
rmdir $(DESTDIR)$(sysconfdir)/sasl2/ || :
|
||||||
|
else ! WITH_SASL
|
||||||
|
install-sasl:
|
||||||
|
uninstall-sasl:
|
||||||
|
endif ! WITH_SASL
|
||||||
|
|
||||||
|
|
||||||
libvirtd.init: remote/libvirtd.init.in $(top_builddir)/config.status
|
libvirtd.init: remote/libvirtd.init.in $(top_builddir)/config.status
|
||||||
$(AM_V_GEN)sed \
|
$(AM_V_GEN)sed \
|
||||||
-e 's|[@]localstatedir[@]|$(localstatedir)|g' \
|
-e 's|[@]localstatedir[@]|$(localstatedir)|g' \
|
||||||
@ -3447,7 +3530,8 @@ libvirt_nss_la_LIBADD = \
|
|||||||
endif WITH_NSS
|
endif WITH_NSS
|
||||||
|
|
||||||
|
|
||||||
install-data-local: install-init install-systemd install-upstart
|
install-data-local: install-init install-systemd install-upstart \
|
||||||
|
install-sysctl install-polkit install-sasl
|
||||||
if WITH_LIBVIRTD
|
if WITH_LIBVIRTD
|
||||||
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/lockd"
|
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/lockd"
|
||||||
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/lockd/files"
|
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/lockd/files"
|
||||||
@ -3502,7 +3586,8 @@ if WITH_NETWORK
|
|||||||
$(LN_S) ../default.xml default.xml )
|
$(LN_S) ../default.xml default.xml )
|
||||||
endif WITH_NETWORK
|
endif WITH_NETWORK
|
||||||
|
|
||||||
uninstall-local:: uninstall-init uninstall-systemd uninstall-upstart
|
uninstall-local:: uninstall-init uninstall-systemd uninstall-upstart \
|
||||||
|
uninstall-sysctl uninstall-polkit uninstall-sasl
|
||||||
if WITH_LIBVIRTD
|
if WITH_LIBVIRTD
|
||||||
rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/lockd/files" ||:
|
rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/lockd/files" ||:
|
||||||
rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/lockd" ||:
|
rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/lockd" ||:
|
||||||
|
Loading…
Reference in New Issue
Block a user