Skip to content
Snippets Groups Projects
Commit 5a6e8eb3 authored by efer's avatar efer
Browse files

change sleep to 10 sec

parent 896d0647
No related branches found
No related tags found
No related merge requests found
...@@ -111,7 +111,7 @@ def erase_menu(disk): ...@@ -111,7 +111,7 @@ def erase_menu(disk):
run(cmd) run(cmd)
print(YELLOW+"\nReady to secure erase."+WHITE) print(YELLOW+"\nReady to secure erase."+WHITE)
print("Computer will enter sleep-mode and proceed after 5sec.\n") print("Computer will enter sleep-mode and proceed after 10sec.\n")
print("Continue?\n") print("Continue?\n")
print("y) Yes") print("y) Yes")
print("c) Cancel") print("c) Cancel")
...@@ -142,7 +142,7 @@ def confirm_select(choice, disk): ...@@ -142,7 +142,7 @@ def confirm_select(choice, disk):
return return
def unfreeze(): def unfreeze():
cmd = ['rtcwake', '-m', 'mem', '-s', '5'] cmd = ['rtcwake', '-m', 'mem', '-s', '10']
run(cmd) run(cmd)
def erase(disk): def erase(disk):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment