File: gpm.apm

package info (click to toggle)
gpm 1.20.4-6.2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 4,480 kB
  • ctags: 1,464
  • sloc: ansic: 9,447; yacc: 1,055; sh: 1,045; makefile: 449; cpp: 241; lisp: 222; awk: 79; sed: 6
file content (13 lines) | stat: -rw-r--r-- 144 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

case "${1}" in
suspend)
    invoke-rc.d gpm stop >/dev/null
    ;;
resume)
    invoke-rc.d gpm start >/dev/null
    ;;
esac

exit 0