From 0cd33ba97d44639019125d7b270d3e9130f629e1 Mon Sep 17 00:00:00 2001 From: Jeremy Peterson Date: Wed, 31 May 2023 20:27:15 -0400 Subject: [PATCH] Install GCC in dev VM --- scripts/devenv-builder/configure-vm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/devenv-builder/configure-vm.sh b/scripts/devenv-builder/configure-vm.sh index 81f701e99b..19686515db 100755 --- a/scripts/devenv-builder/configure-vm.sh +++ b/scripts/devenv-builder/configure-vm.sh @@ -82,7 +82,7 @@ fi if ${INSTALL_BUILD_DEPS} || ${BUILD_AND_RUN}; then sudo dnf clean all -y sudo dnf update -y - sudo dnf install -y git cockpit make jq selinux-policy-devel rpm-build jq bash-completion + sudo dnf install -y gcc git cockpit make jq selinux-policy-devel rpm-build jq bash-completion sudo systemctl enable --now cockpit.socket fi