mtinkd.rc 332 B

1234567891011121314151617181920
  1. #!/sbin/openrc-run
  2. # Copyright 1999-2004 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. depend() {
  5. use cups
  6. }
  7. start() {
  8. ebegin "Starting mtinkd"
  9. /usr/sbin/mtinkd start ${DEV_FILE} ${SPEC}
  10. eend $?
  11. }
  12. stop() {
  13. ebegin "Stopping mtinkd"
  14. /usr/sbin/mtinkd stop ${DEV_FILE} ${SPEC}
  15. eend $?
  16. }