Skip to content

Commit

Permalink
unswap files
Browse files Browse the repository at this point in the history
  • Loading branch information
jertel committed Mar 7, 2024
1 parent fffef9b commit 4057498
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 4057498

Please sign in to comment.