Skip to content
Snippets Groups Projects
Commit 052c4e4a authored by Don Lipari's avatar Don Lipari
Browse files

Minor edit to power_save.shtml

parent 2f02b454
No related branches found
No related tags found
No related merge requests found
...@@ -128,7 +128,7 @@ scripts.</p> ...@@ -128,7 +128,7 @@ scripts.</p>
<pre> <pre>
#!/bin/bash #!/bin/bash
# Example SuspendProgram # Example SuspendProgram
echo "Suspend invoked $0 $*" >>/var/log/power_save.log echo "`date` Suspend invoked $0 $*" >>/var/log/power_save.log
hosts=`scontrol show hostnames $1` hosts=`scontrol show hostnames $1`
for host in "$hosts" for host in "$hosts"
do do
...@@ -137,7 +137,7 @@ done ...@@ -137,7 +137,7 @@ done
#!/bin/bash #!/bin/bash
# Example ResumeProgram # Example ResumeProgram
echo "Resume invoked $0 $*" >>/var/log/power_save.log echo "`date` Resume invoked $0 $*" >>/var/log/power_save.log
hosts=`scontrol show hostnames $1` hosts=`scontrol show hostnames $1`
for host in "$hosts" for host in "$hosts"
do do
......
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