Skip to content

Commit 5a4d9bc

Browse files
Merge pull request #965 from jpodivin/expansionrestoration
Restoring expansion in interface scripts
2 parents f71c711 + c2c7c95 commit 5a4d9bc

10 files changed

+10
-10
lines changed

devsetup/scripts/bmaas/attach-network.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# set -x
2+
set -x
33

44
if [ "$EUID" -eq 0 ]; then
55
echo "Please do not run as root."

devsetup/scripts/bmaas/baremetal-bridge.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# set -x
2+
set -x
33

44
if [ "$EUID" -eq 0 ]; then
55
echo "Please do not run as root."

devsetup/scripts/bmaas/generate-nodes-yaml.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# set -x
2+
set -x
33

44
NODE_NAME_PREFIX=${NODE_NAME_PREFIX:-"crc-bmaas"}
55
INGRESS_DOMAIN=$(oc get ingresses.config/cluster -o jsonpath={.spec.domain})

devsetup/scripts/bmaas/network-attachement-definition.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# set -x
2+
set -x
33

44
if [ "$EUID" -eq 0 ]; then
55
echo "Please do not run as root."

devsetup/scripts/bmaas/sushy-emulator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# set -x
2+
set -x
33

44
if [ "$EUID" -eq 0 ]; then
55
echo "Please do not run as root."

devsetup/scripts/crc-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# set -x
2+
set -x
33

44
if [ "$EUID" -eq 0 ]; then
55
echo "Please do not run as root."

devsetup/scripts/interfaces-setup-cleanup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# set -x
2+
set -x
33

44
if [ "$EUID" -eq 0 ]; then
55
echo "Please do not run as root."

devsetup/scripts/interfaces-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# set -x
2+
set -x
33

44
if [ "$EUID" -eq 0 ]; then
55
echo "Please do not run as root."

devsetup/scripts/network-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# set -x
2+
set -x
33

44
if [ "$EUID" -eq 0 ]; then
55
echo "Please do not run as root."

scripts/gen-ceph-kustomize.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1414
# License for the specific language governing permissions and limitations
1515
# under the License.
16-
# set -ex
16+
set -ex
1717

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

0 commit comments

Comments
 (0)