Skip to content

Commit

Permalink
bug: Add $ in Makefile
Browse files Browse the repository at this point in the history
- Add $ in CONTAINERS env

Fixes #93
  • Loading branch information
kevydotvinu committed Aug 21, 2023
1 parent 193e901 commit bc769e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ignition/00-core.bu
Original file line number Diff line number Diff line change
Expand Up @@ -1472,7 +1472,7 @@ storage:
RELEASE ?= stable
LOGLEVEL ?= info
SCRIPT_DIR = $(shell cd -- "$( dirname -- "${BASH_SOURCE[0]:-$0}"; )" &> /dev/null && pwd 2> /dev/null; )
CONTAINERS = $(shell sudo podman ps --format {{.Names}} | sort | grep -oE '^dhcp$|^vbmc$|^webserver$|^proxy$' | xargs)
CONTAINERS = $(shell sudo podman ps --format {{.Names}} | sort | grep -oE '^dhcp$$|^vbmc$$|^webserver$$|^proxy$$' | xargs)
VMS = $(shell sudo virsh list --all --name | grep -oE 'master0|master1|master2|worker0|worker1' | xargs)
TFF = $(shell ls /tmp/openshift-install-bootstrap-*/terraform.platform.auto.tfvars.json 2>/dev/null | wc -l)
VIRBR0 = $(shell sudo virsh net-info default | awk '/Bridge:/{print $$2}')
Expand Down
Loading

0 comments on commit bc769e2

Please sign in to comment.