47e49b3b3b
We will make use of common functions across the deploy_site, update_site and redeploy_server script. This will help to reduce common and repetitive codes across the scripts. Note that the Shipyard CLI needs to be installed before we can use these scripts. Change-Id: I31e5c8723346666a592951f59856008ccb64128b
28 lines
854 B
Bash
Executable File
28 lines
854 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2018 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
set -ex
|
|
|
|
# We can excute the script in the following manner:
|
|
#
|
|
# $ ./update_site.sh
|
|
#
|
|
|
|
# Source environment variables
|
|
source set_env
|
|
|
|
# Execute shipyard action for update_site
|
|
bash execute_shipyard_action.sh 'update_site'
|