Rewrote shell script headers with accepted kubernetes boilerplate

because of failing build notifications on #5414
pull/6/head
Charles Butler 2015-03-26 16:35:24 -04:00
parent 5acce1b245
commit a68de6237b
2 changed files with 10 additions and 10 deletions

View File

@ -1,8 +1,6 @@
#!/bin/bash
set -euo pipefail
# Copyright 2014 Canonical LTD. All rights reserved.
# Copyright 2015 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@ -16,8 +14,11 @@ set -euo pipefail
# See the License for the specific language governing permissions and
# limitations under the License.
# If you find any bugs within this script - please file bugs against the
# Kubernetes Juju Charms project - located here: https://github.com/whitmo/bundle-kubernetes
set -o errexit
set -o nounset
set -o pipefail
function check_for_ppa(){
local repo="$1"

View File

@ -1,8 +1,6 @@
#!/bin/bash
set -euo pipefail
# Copyright 2014 Canonical LTD. All rights reserved.
# Copyright 2015 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@ -16,9 +14,10 @@ set -euo pipefail
# See the License for the specific language governing permissions and
# limitations under the License.
# If you find any bugs within this script - please file bugs against the
# Kubernetes Juju Charms project - located here: https://github.com/whitmo/bundle-kubernetes
set -o errexit
set -o nounset
set -o pipefail
source $KUBE_ROOT/cluster/juju/prereqs/ubuntu-juju.sh
KUBE_BUNDLE_URL='https://raw.githubusercontent.com/whitmo/bundle-kubernetes/master/bundles.yaml'