#!/bin/sh # # postfix.service - postfix(8) service file # case $1 in start) /usr/sbin/postfix start >/dev/null 2>/dev/null ;; stop) killall -q postfix ;; *) echo "usage: $0 start|stop" esac