Skip to content

Commit

Permalink
Fix location of run.sh file for provisioning and deprovisioning files
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunnatillo committed Jul 13, 2022
1 parent fba4804 commit 8f80a8d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/scripts/deprovision/cluster.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../.."
METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../../.."

export ACTION="deprovision_cluster"

Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/deprovision/controlplane.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../.."
METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../../.."

export ACTION="deprovision_controlplane"

Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/deprovision/worker.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../.."
METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../../.."

export ACTION="deprovision_worker"

Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/provision/cluster.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../.."
METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../../.."

export ACTION="provision_cluster"

Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/provision/controlplane.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../.."
METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../../.."

export ACTION="provision_controlplane"

Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/provision/pivot.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../.."
METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../../.."

export ACTION="pivoting"

Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/provision/worker.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../.."
METAL3_DIR="$(dirname "$(readlink -f "${0}")")/../../.."

export ACTION="provision_worker"

Expand Down

0 comments on commit 8f80a8d

Please sign in to comment.