Ticket #1530: dovecot.diff

File dovecot.diff, 372 bytes (added by andrea+darwinports@…, 20 years ago)

The actual diff

  • files/dovecot.sh

    diff -urN dovecot.orig/files/dovecot.sh dovecot/files/dovecot.sh
    old new  
     1#!/bin/sh
     2
     3case "$1" in
     4
     5start)
     6  __PREFIX/sbin/dovecot start
     7  ;;
     8
     9restart)
     10  __PREFIX/sbin/dovecot reload
     11  ;;
     12
     13stop)
     14  __PREFIX/sbin/dovecot stop
     15  ;;
     16
     17esac