From 9172e10dbabfb7d2217f054da5c89a6a0a4ba541 Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Thu, 3 Aug 2023 14:47:53 -0400 Subject: [PATCH] check if there are files in yum.repos.d before trying to move them --- setup/so-functions | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup/so-functions b/setup/so-functions index c8da13043..567584a2f 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -1881,7 +1881,9 @@ securityonion_repo() { if [[ $is_oracle ]]; then logCmd "dnf -v clean all" logCmd "mkdir -vp /root/oldrepos" - logCmd "mv -v /etc/yum.repos.d/* /root/oldrepos/" + if [ -n "$(ls -A /etc/yum.repos.d/ 2>/dev/null)" ]; then + logCmd "mv -v /etc/yum.repos.d/* /root/oldrepos/" + fi if [[ $is_desktop_iso ]]; then gpg_rpm_import if [[ ! $is_airgap ]]; then