From 7a9ddf3d21ea0f74415b3b32029dcb4b97615c7c Mon Sep 17 00:00:00 2001 From: konsthol Date: Wed, 6 Sep 2023 02:25:43 +0300 Subject: [PATCH] bifurcation --- harden | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harden b/harden index fe9b9a7..4cb3416 100755 --- a/harden +++ b/harden @@ -102,7 +102,7 @@ function install_packages { # and store the ones that are indeed absent in another local array. # Then it will install the packages that are missing by invoking the install_packages function. function check_dependencies { # systemd-container is for machinectl - local dependencies=(fuse-overlayfs dbus-user-session uidmap slirp4netns systemd-container at htop curl git sudo vim ssh wget fail2ban) # Declare dependencies as a local array + local dependencies=(fuse-overlayfs dbus-user-session uidmap slirp4netns systemd-container at cron htop curl git sudo vim ssh wget fail2ban) # Declare dependencies as a local array #> see what to do with name differences between distros if any <# local missing_dependencies=() # Declare missing_dependencies as a local array for dependency in "${dependencies[@]}"; do # Loop through the dependencies array