[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] oxenstored: honour XEN_{LOG, RUN}_DIR in oxenstored.conf
commit c84a1fa2e6c55b1959fac2a4b3bd15539f4d820c Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Mon Jun 13 08:48:59 2016 +0100 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Tue Jun 14 14:31:27 2016 +0100 oxenstored: honour XEN_{LOG,RUN}_DIR in oxenstored.conf Generate oxenstored.conf with configure. This involves modifying tools/configure.ac and rerun autogen.sh. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- .gitignore | 1 + tools/configure | 3 ++- tools/configure.ac | 1 + tools/ocaml/xenstored/oxenstored.conf | 39 -------------------------------- tools/ocaml/xenstored/oxenstored.conf.in | 39 ++++++++++++++++++++++++++++++++ 5 files changed, 43 insertions(+), 40 deletions(-) diff --git a/.gitignore b/.gitignore index af0e0a8..39deb2d 100644 --- a/.gitignore +++ b/.gitignore @@ -346,6 +346,7 @@ tools/ocaml/libs/xentoollog/_xtl_levels.* tools/ocaml/libs/xentoollog/xentoollog.ml tools/ocaml/libs/xentoollog/xentoollog.mli tools/ocaml/xenstored/oxenstored +tools/ocaml/xenstored/oxenstored.conf tools/ocaml/test/xtl tools/ocaml/test/send_debug_keys tools/ocaml/test/list_domains diff --git a/tools/configure b/tools/configure index a80f132..42e07a6 100755 --- a/tools/configure +++ b/tools/configure @@ -2408,7 +2408,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -ac_config_files="$ac_config_files ../config/Tools.mk hotplug/FreeBSD/rc.d/xencommons hotplug/FreeBSD/rc.d/xendriverdomain hotplug/Linux/init.d/sysconfig.xencommons hotplug/Linux/init.d/xen-watchdog hotplug/Linux/init.d/xencommons hotplug/Linux/init.d/xendomains hotplug/Linux/init.d/xendriverdomain hotplug/Linux/vif-setup hotplug/Linux/xen-hotplug-common.sh hotplug/Linux/xendomains hotplug/NetBSD/rc.d/xencommons hotplug/NetBSD/rc.d/xendriverdomain libxl/xenlight.pc.in libxl/xlutil.pc.in" +ac_config_files="$ac_config_files ../config/Tools.mk hotplug/FreeBSD/rc.d/xencommons hotplug/FreeBSD/rc.d/xendriverdomain hotplug/Linux/init.d/sysconfig.xencommons hotplug/Linux/init.d/xen-watchdog hotplug/Linux/init.d/xencommons hotplug/Linux/init.d/xendomains hotplug/Linux/init.d/xendriverdomain hotplug/Linux/vif-setup hotplug/Linux/xen-hotplug-common.sh hotplug/Linux/xendomains hotplug/NetBSD/rc.d/xencommons hotplug/NetBSD/rc.d/xendriverdomain libxl/xenlight.pc.in libxl/xlutil.pc.in ocaml/xenstored/oxenstored.conf" ac_config_headers="$ac_config_headers config.h" @@ -10374,6 +10374,7 @@ do "hotplug/NetBSD/rc.d/xendriverdomain") CONFIG_FILES="$CONFIG_FILES hotplug/NetBSD/rc.d/xendriverdomain" ;; "libxl/xenlight.pc.in") CONFIG_FILES="$CONFIG_FILES libxl/xenlight.pc.in" ;; "libxl/xlutil.pc.in") CONFIG_FILES="$CONFIG_FILES libxl/xlutil.pc.in" ;; + "ocaml/xenstored/oxenstored.conf") CONFIG_FILES="$CONFIG_FILES ocaml/xenstored/oxenstored.conf" ;; "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "hotplug/Linux/systemd/proc-xen.mount") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/systemd/proc-xen.mount" ;; "hotplug/Linux/systemd/var-lib-xenstored.mount") CONFIG_FILES="$CONFIG_FILES hotplug/Linux/systemd/var-lib-xenstored.mount" ;; diff --git a/tools/configure.ac b/tools/configure.ac index d0c9e63..2e5c95c 100644 --- a/tools/configure.ac +++ b/tools/configure.ac @@ -21,6 +21,7 @@ hotplug/NetBSD/rc.d/xencommons hotplug/NetBSD/rc.d/xendriverdomain libxl/xenlight.pc.in libxl/xlutil.pc.in +ocaml/xenstored/oxenstored.conf ]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_AUX_DIR([../]) diff --git a/tools/ocaml/xenstored/oxenstored.conf b/tools/ocaml/xenstored/oxenstored.conf deleted file mode 100644 index ac60f49..0000000 --- a/tools/ocaml/xenstored/oxenstored.conf +++ /dev/null @@ -1,39 +0,0 @@ -# default xenstored config - -# Where the pid file is stored -pid-file = /var/run/xenstored.pid - -# Randomly failed a transaction with EAGAIN. Used for testing Xs user -test-eagain = false - -# Activate transaction merge support -merge-activate = true - -# Activate node permission system -perms-activate = true - -# Activate quota -quota-activate = true -quota-maxentity = 1000 -quota-maxsize = 2048 -quota-maxwatch = 100 -quota-transaction = 10 -quota-maxrequests = 1024 - -# Activate filed base backend -persistent = false - -# Xenstored logs -# xenstored-log-file = /var/log/xenstored.log -# xenstored-log-level = null -# xenstored-log-nb-files = 10 - -# Xenstored access logs -# access-log-file = /var/log/xenstored-access.log -# access-log-nb-lines = 13215 -# acesss-log-nb-chars = 180 -# access-log-special-ops = false - -# Perodically scanning all the rings as a safenet for lazy clients. -# Define the interval in seconds, set to negative to disable. -# ring-scan-interval = 20 diff --git a/tools/ocaml/xenstored/oxenstored.conf.in b/tools/ocaml/xenstored/oxenstored.conf.in new file mode 100644 index 0000000..82117a9 --- /dev/null +++ b/tools/ocaml/xenstored/oxenstored.conf.in @@ -0,0 +1,39 @@ +# default xenstored config + +# Where the pid file is stored +pid-file = @XEN_RUN_DIR@/xenstored.pid + +# Randomly failed a transaction with EAGAIN. Used for testing Xs user +test-eagain = false + +# Activate transaction merge support +merge-activate = true + +# Activate node permission system +perms-activate = true + +# Activate quota +quota-activate = true +quota-maxentity = 1000 +quota-maxsize = 2048 +quota-maxwatch = 100 +quota-transaction = 10 +quota-maxrequests = 1024 + +# Activate filed base backend +persistent = false + +# Xenstored logs +# xenstored-log-file = @XEN_LOG_DIR@/xenstored.log +# xenstored-log-level = null +# xenstored-log-nb-files = 10 + +# Xenstored access logs +# access-log-file = @XEN_LOG_DIR@/xenstored-access.log +# access-log-nb-lines = 13215 +# acesss-log-nb-chars = 180 +# access-log-special-ops = false + +# Perodically scanning all the rings as a safenet for lazy clients. +# Define the interval in seconds, set to negative to disable. +# ring-scan-interval = 20 -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |