From 71a3a0608689673c2af916a93cb774b429d436c5 Mon Sep 17 00:00:00 2001 From: spmfox Date: Thu, 29 Aug 2024 14:35:19 -0400 Subject: adding hdparm and btm --- templates/bootcblade.containerfile.j2 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/bootcblade.containerfile.j2 b/templates/bootcblade.containerfile.j2 index f416421..1a03627 100644 --- a/templates/bootcblade.containerfile.j2 +++ b/templates/bootcblade.containerfile.j2 @@ -57,6 +57,10 @@ RUN dnf -y install firewalld && \ # Allow sudo without password RUN echo "%wheel ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/wheel-passwordless-sudo +# bottom +RUN dnf -y install `curl -s https://api.github.com/repos/ClementTsang/bottom/releases/latest | grep "browser_download" |grep -v musl |grep ".rpm" |awk -F '"' '{print $4}'` && \ + dnf clean all + # Other tools -RUN dnf -y install vim podman fish ansible wget dstat byobu smartmontools && \ +RUN dnf -y install vim podman fish ansible wget dstat byobu smartmontools hdparm && \ dnf clean all -- cgit