Skip to content

Commit dc00752

Browse files
committed
fix: pass -y to yum in build_and_install_kernel.sh
Without this, the script will ask for user input and get stuck if run unattended. Signed-off-by: Patrick Roy <[email protected]>
1 parent 2331188 commit dc00752

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/hiding_ci/build_and_install_kernel.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ install_build_deps() {
3535
apt-get update && apt-get install -y make bsdmainutils flex yacc bison bc xz-utils libelf-dev elfutils libssl-dev
3636
;;
3737
"AL2023")
38-
yum groupinstall "Development Tools"
39-
yum install make openssl-devel dkms
38+
yum -y groupinstall "Development Tools"
39+
yum -y install make openssl-devel dkms
4040
;;
4141
esac
4242
}

0 commit comments

Comments
 (0)