e861a83e20
- print warning on service start when sendmail-cf is required (#447148) - replace Makefile with shell script to avoid dependency on make (#467841) - fix multiarch conflicts (#343161) - preserve timestamps on config files - gzip RELEASE_NOTES - defuzz patches - drop gcc2690 patch
6 lines
96 B
Bash
6 lines
96 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" = "up" ] || [ "$2" = "down" ]; then
|
|
/sbin/service sendmail reload || :
|
|
fi
|