Repository: cloudstack Updated Branches: refs/heads/4.4 87c3d7751 -> f26b6d0a7
Cosmetic fixed. three in total. 1. Only run hv_kvp_daemon if it exists. 2. add the -f argument to the rm to make is silent if it doesn't exist. 3. by using log_action_msg instead of log_action_begin_msg the screen output looks way better. Signed-off-by: Daan Hoogland <[email protected]> (cherry picked from commit 66816827cbef1415dddd3f734e494c8adc41fbae) Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/f26b6d0a Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f26b6d0a Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f26b6d0a Branch: refs/heads/4.4 Commit: f26b6d0a7866fe4ad6dfc0954d8d222a827fe802 Parents: 87c3d77 Author: Joris van Lieshout <[email protected]> Authored: Wed May 21 16:58:01 2014 +0200 Committer: Daan Hoogland <[email protected]> Committed: Thu Jun 12 14:58:24 2014 +0200 ---------------------------------------------------------------------- systemvm/patches/debian/config/etc/init.d/cloud-early-config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f26b6d0a/systemvm/patches/debian/config/etc/init.d/cloud-early-config ---------------------------------------------------------------------- diff --git a/systemvm/patches/debian/config/etc/init.d/cloud-early-config b/systemvm/patches/debian/config/etc/init.d/cloud-early-config index ffb23ec..b8c40db 100755 --- a/systemvm/patches/debian/config/etc/init.d/cloud-early-config +++ b/systemvm/patches/debian/config/etc/init.d/cloud-early-config @@ -30,13 +30,13 @@ PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" #set -x #exec 3>&0 4>&1 > /var/log/test.log 2>&1 #start hv_kvp daemon -/usr/sbin/hv_kvp_daemon +[ -f /usr/sbin/hv_kvp_daemon ] && /usr/sbin/hv_kvp_daemon # Fix haproxy directory issue mkdir -p /var/lib/haproxy # Clear boot up flag, it would be created by rc.local after boot up done -rm /var/cache/cloud/boot_up_done +rm -f /var/cache/cloud/boot_up_done [ -x /sbin/ifup ] || exit 0 @@ -44,7 +44,7 @@ rm /var/cache/cloud/boot_up_done log_it() { echo "$(date) $@" >> /var/log/cloud.log - log_action_begin_msg "$@" + log_action_msg "$@" } init_interfaces_orderby_macs() {
