Skip to content

Commit

Permalink
Merge pull request #965 from jpodivin/expansionrestoration
Browse files Browse the repository at this point in the history
Restoring expansion in interface scripts
  • Loading branch information
openshift-merge-bot[bot] authored Dec 9, 2024
2 parents f71c711 + c2c7c95 commit 5a4d9bc
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion devsetup/scripts/bmaas/attach-network.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# set -x
set -x

if [ "$EUID" -eq 0 ]; then
echo "Please do not run as root."
Expand Down
2 changes: 1 addition & 1 deletion devsetup/scripts/bmaas/baremetal-bridge.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# set -x
set -x

if [ "$EUID" -eq 0 ]; then
echo "Please do not run as root."
Expand Down
2 changes: 1 addition & 1 deletion devsetup/scripts/bmaas/generate-nodes-yaml.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# set -x
set -x

NODE_NAME_PREFIX=${NODE_NAME_PREFIX:-"crc-bmaas"}
INGRESS_DOMAIN=$(oc get ingresses.config/cluster -o jsonpath={.spec.domain})
Expand Down
2 changes: 1 addition & 1 deletion devsetup/scripts/bmaas/network-attachement-definition.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# set -x
set -x

if [ "$EUID" -eq 0 ]; then
echo "Please do not run as root."
Expand Down
2 changes: 1 addition & 1 deletion devsetup/scripts/bmaas/sushy-emulator.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# set -x
set -x

if [ "$EUID" -eq 0 ]; then
echo "Please do not run as root."
Expand Down
2 changes: 1 addition & 1 deletion devsetup/scripts/crc-setup.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# set -x
set -x

if [ "$EUID" -eq 0 ]; then
echo "Please do not run as root."
Expand Down
2 changes: 1 addition & 1 deletion devsetup/scripts/interfaces-setup-cleanup.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# set -x
set -x

if [ "$EUID" -eq 0 ]; then
echo "Please do not run as root."
Expand Down
2 changes: 1 addition & 1 deletion devsetup/scripts/interfaces-setup.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# set -x
set -x

if [ "$EUID" -eq 0 ]; then
echo "Please do not run as root."
Expand Down
2 changes: 1 addition & 1 deletion devsetup/scripts/network-setup.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# set -x
set -x

if [ "$EUID" -eq 0 ]; then
echo "Please do not run as root."
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen-ceph-kustomize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# 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
set -ex

# expect that the common.sh is in the same dir as the calling script
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
Expand Down

0 comments on commit 5a4d9bc

Please sign in to comment.