Skip to content

Commit

Permalink
Merge pull request #12526 from Security-Onion-Solutions/jertel/status
Browse files Browse the repository at this point in the history
unswap files
  • Loading branch information
jertel authored Mar 7, 2024
2 parents e2567dc + 4057498 commit 6d06aa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions salt/common/tools/sbin/so-common-status-check
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def check_for_fps():
# Unknown, so assume 0
fps = 0

with open('/opt/so/log/sostatus/lks_enabled', 'w') as f:
with open('/opt/so/log/sostatus/fps_enabled', 'w') as f:
f.write(str(fps))

def check_for_lks():
Expand All @@ -80,7 +80,7 @@ def check_for_lks():
lks = 1
if lks:
break
with open('/opt/so/log/sostatus/fps_enabled', 'w') as f:
with open('/opt/so/log/sostatus/lks_enabled', 'w') as f:
f.write(str(lks))

def fail(msg):
Expand Down

0 comments on commit 6d06aa8

Please sign in to comment.