Skip to content

Commit

Permalink
bug fix: for imunify install ref: https://app.clickup.com/t/86engx249
Browse files Browse the repository at this point in the history
  • Loading branch information
usmannasir committed Jan 24, 2024
1 parent a8387cd commit 1271eeb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CLManager/CageFS.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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)

Expand Down

1 comment on commit 1271eeb

@eakteam
Copy link

@eakteam eakteam commented on 1271eeb Jan 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@usmannasir The command is malformed: mkdri /usr/local/CyberCP/public/imunify and mkdri /usr/local/CyberCP/public/imunifyav.
Change instead with mkdir

Please sign in to comment.