Author: waldi Date: Sun May 6 18:05:38 2012 New Revision: 1017 Log: * debian/changelog: Update. * debian/xen-utils-common.xendomains.init: Remove extra output if domain was restored. Modified: trunk/xen/debian/changelog trunk/xen/debian/xen-utils-common.xendomains.init Modified: trunk/xen/debian/changelog =============================================================================--- trunk/xen/debian/changelog Sun May 6 18:03:21 2012 (r1016) +++ trunk/xen/debian/changelog Sun May 6 18:05:38 2012 (r1017) @@ -7,6 +7,7 @@ - Add missing sanity checks for variables. (closes: #671750) - Remove not longer supported config options. - Don''t fail if no config is available. + - Remove extra output if domain was restored. -- Bastian Blank <waldi at debian.org> Sat, 05 May 2012 21:24:18 +0200 Modified: trunk/xen/debian/xen-utils-common.xendomains.init =============================================================================--- trunk/xen/debian/xen-utils-common.xendomains.init Sun May 6 18:03:21 2012 (r1016) +++ trunk/xen/debian/xen-utils-common.xendomains.init Sun May 6 18:05:38 2012 (r1017) @@ -99,7 +99,9 @@ for file in $XENDOMAINS_AUTO/*; do name="$(check_config_name $file)" - if [ "${domains[$name]}" = started ] || check_running "$name"; then + if [ "${domains[$name]}" = started ]; then + : + elif check_running "$name"; then log_action_msg "Xen domain $name already running" else log_action_begin_msg "Starting Xen domain $name (from $file)"