Skip to content

Commit 7ec8470

Browse files
committed
handle rename of the repo
build-custom-rhcos-disks -> custom-coreos-disk-images
1 parent 4eafdd5 commit 7ec8470

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# build-custom-rhcos-disks
1+
# custom-coreos-disk-images
22

33
This repo contains files and instructions for building customized RHCOS
44
(Red Hat CoreOS) disk images that are used for installation and
@@ -90,7 +90,7 @@ Now you should be able to generate an image with something like:
9090
```
9191
ociarchive=/path/to/my-custom-rhcos.ociarchive
9292
platform=qemu
93-
sudo ./build-custom-rhcos-disks.sh $ociarchive $platform
93+
sudo ./custom-coreos-disk-images.sh $ociarchive $platform
9494
```
9595
9696
Which will create the file `my-custom-rhcos.ociarchive.x86_64.qcow2` in

build-custom-rhcos-disks.sh renamed to custom-coreos-disk-images.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ set -x -euo pipefail
77
#
88
# Invocation of the script would look something like this:
99
#
10-
# sudo ./build-custom-rhcos-disks.sh \
11-
# /path/to/coreos-415.ociarchive qemu
10+
# sudo ./custom-coreos-disk-images.sh \
11+
# /path/to/coreos.ociarchive qemu
1212
#
1313
# And it will create the output file in the current directory:
14-
# coreos-415.ociarchive.x86_64.qemu.qcow2
14+
# coreos.ociarchive.x86_64.qemu.qcow2
1515

1616
ARCH=$(arch)
1717
OCIARCHIVE=$1

0 commit comments

Comments
 (0)