From 46aa7ebdf31d7cc02e4318e010901fe49d17628d Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Fri, 20 Jan 2023 06:48:33 -0500 Subject: [PATCH] correct find/exec syntax --- setup/so-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/so-functions b/setup/so-functions index d9c9bc2b2..416656bc2 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -1943,7 +1943,7 @@ securityonion_repo() { # if the package is updated when the update_packages function is called logCmd "yum -v -y update centos-release" info "Backing up the .repo files that were added by the centos-release package." - logCmd "find /etc/yum.repos.d/ -type f -not -name 'securityonion*repo' -exec mv -bvf {} /root/oldrepos/ \;" + logCmd "find /etc/yum.repos.d/ -type f -not -name 'securityonion*repo' -exec mv -bvf {} /root/oldrepos/ \\;" logCmd "yum repolist all" fi }