From 659020dd8950b76a1eeb46f8d0e0fafe3ecd974a Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Tue, 6 May 2025 15:24:54 -0600 Subject: [PATCH] migrate: Dont quote rm command --- usr/local/share/bastille/migrate.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/share/bastille/migrate.sh b/usr/local/share/bastille/migrate.sh index ec73653f..e7cbbb61 100644 --- a/usr/local/share/bastille/migrate.sh +++ b/usr/local/share/bastille/migrate.sh @@ -122,8 +122,8 @@ migrate_cleanup() { local _host="${3}" # Remove archive files from local and remote system - ssh ${_user}@${_host} sudo rm -f "${_remote_bastille_migratedir}/${_jail}_*.*" - rm -f "${bastille_migratedir}/${_jail}_*.*" + ssh ${_user}@${_host} sudo rm -f ${_remote_bastille_migratedir}/${_jail}_*.* + rm -f ${bastille_migratedir}/${_jail}_*.* } migrate_create_export() {