From 1eb8d4ccfbc9c34723586980d5a912e2ffa903cd Mon Sep 17 00:00:00 2001 From: Harry Huang Date: Tue, 10 Jan 2017 16:11:55 +0800 Subject: Opera deploy scripts JIRA: OPERA-2 Requirement: After compass4nfv deployment Function: 1. Launch a VM (defaultly CentOS 7) 2. Launch Open-O dockers inside VM 3. Launch juju inside openstack Directory conf/ need config according to local environment Change-Id: Iac24051668e15b60f76f4819760f7b7c9b1867f3 Signed-off-by: Harry Huang --- util/log.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 util/log.sh (limited to 'util/log.sh') diff --git a/util/log.sh b/util/log.sh new file mode 100755 index 0000000..c19f563 --- /dev/null +++ b/util/log.sh @@ -0,0 +1,24 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016-2017 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +function log_info() { + echo -e "\033[32m$*\033[0m" +} + +function log_warn() { + echo -e "\033[33m$*\033[0m" +} + +function log_error() { + echo -e "\033[31m$*\033[0m" +} + +function log_progress() { + echo -en "\033[33m$*\r\033[0m" +} -- cgit 1.2.3-korg