postfix.rc 286 B

1234567891011121314151617181920
  1. #!/bin/sh
  2. #
  3. # $OpenBSD: postfix.rc,v 1.6 2015/07/15 16:18:45 sthen Exp $
  4. daemon="${TRUEPREFIX}/libexec/postfix/master"
  5. . /etc/rc.d/rc.subr
  6. pexp="${daemon}.*"
  7. rc_start() {
  8. ${TRUEPREFIX}/sbin/postfix ${daemon_flags} start
  9. }
  10. rc_stop() {
  11. ${TRUEPREFIX}/sbin/postfix stop
  12. }
  13. rc_cmd $1