Skip to content

Instantly share code, notes, and snippets.

@legendtang
Created October 17, 2015 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save legendtang/551d36df53ee658e5c4c to your computer and use it in GitHub Desktop.
Save legendtang/551d36df53ee658e5c4c to your computer and use it in GitHub Desktop.
/etc/init.d/mentohust
#!/bin/sh /etc/rc.common
START=99
STOP=10
start()
{
mentohust >/dev/null 2>&1
}
stop()
{
sync
mentohust -k >/dev/null 2>&1
}
restart()
{
stop
start
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment