From 1271eebd82873ef4e2ba9ffc351cf7f6a0938bb6 Mon Sep 17 00:00:00 2001 From: usmannasir Date: Wed, 24 Jan 2024 08:41:15 +0500 Subject: [PATCH] bug fix: for imunify install ref: https://app.clickup.com/t/86engx249 --- CLManager/CageFS.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CLManager/CageFS.py b/CLManager/CageFS.py index 2e4729b84..e9c2b3d2d 100644 --- a/CLManager/CageFS.py +++ b/CLManager/CageFS.py @@ -184,6 +184,11 @@ def submitinstallImunify(key): ## + ### address issue to create imunify dir - https://app.clickup.com/t/86engx249 + + command = 'mkdri /usr/local/CyberCP/public/imunify' + ProcessUtilities.executioner(command) + command = 'pkill -f "bash i360deploy.sh"' ServerStatusUtil.executioner(command, statusFile) @@ -238,6 +243,11 @@ def submitinstallImunifyAV(): ## + ### address issue to create imunify dir - https://app.clickup.com/t/86engx249 + + command = 'mkdri /usr/local/CyberCP/public/imunifyav' + ProcessUtilities.executioner(command) + command = 'pkill -f "bash imav-deploy.sh"' ServerStatusUtil.executioner(command, statusFile)