This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
FILELASTSTAT='/run/sdaidle_laststat' | |
FILELASTMODE='/run/sdaidle_lastmode' | |
# define | |
MODESPINDOWN="spindown" | |
MODEUP="up" | |
# | |
# from file | |
LASTSTAT=`cat $FILELASTSTAT` | |
CURSTAT=`cat /proc/diskstats | /bin/grep 'sda '` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//app/batch/SampleAQS.scala | |
package batch | |
import play.api._ | |
import play.api.Play.current | |
import play.api.libs.concurrent.Akka | |
import play.api.libs.concurrent.Execution.Implicits.defaultContext | |
import akka.actor.{Actor, ActorSystem, Props} | |
import com.typesafe.akka.extension.quartz.QuartzSchedulerExtension |