Skip to content

Commit 169b88f

Browse files
committed
Use dashes in standalone scripts
We were using underscores and dashes in the script names inconsistently (somewhere one elsewhere the other). This moves all the scripts that are mostly meant to be run on their own (like `get_rhcos_image`) to use dashes (which are easier to type on most keyboards). The main numbered scripts are left alone for now.
1 parent 8fbf974 commit 169b88f

8 files changed

+3
-3
lines changed

Diff for: 03_configure_undercloud.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ if ! openstack image show cirros; then
3838
openstack image create cirros --container-format bare --disk-format qcow2 --public --file "$CIRROS_IMAGE_FILENAME"
3939
fi
4040

41-
./get_rhcos_image.sh
41+
./get-rhcos-image.sh
4242
RHOS_IMAGE_HASH=$(sha512sum $RHCOS_IMAGE_FILENAME | awk '{print $1}')
4343
if ! openstack image show rhcos; then
4444
openstack image create rhcos --container-format bare --disk-format qcow2 --public --file $RHCOS_IMAGE_FILENAME

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ script will add an `/etc/hosts` entry for the floating IP of the service VM
3434
hosting the API load balancer. This is required for the installer to be able
3535
to look up the API hostname and talk to the API.
3636

37-
- `./expose_ocp_api.sh`
37+
- `./expose-ocp-api.sh`
3838

3939
### Customizing Deployment
4040

@@ -53,6 +53,6 @@ Once you have a complete working environment, you do not need to re-run all
5353
sripts. If you're making changes to the installer, your workflow would look
5454
like:
5555

56-
- `ocp_cleanup.sh`
56+
- `ocp-cleanup.sh`
5757
- `build_ocp_installer.sh`
5858
- `06_run_ocp.sh`

Diff for: expose_ocp_api.sh renamed to expose-ocp-api.sh

File renamed without changes.

Diff for: get_rhcos_image.sh renamed to get-rhcos-image.sh

File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: ocp_cleanup.sh renamed to ocp-cleanup.sh

File renamed without changes.

Diff for: tripleo_cleanup.sh renamed to tripleo-cleanup.sh

File renamed without changes.

0 commit comments

Comments
 (0)