diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2003-09-29 11:42:45 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2003-09-29 11:42:45 +0000 |
commit | 2f4eff9be7756451f6a8ae237f11015a0224d7fb (patch) | |
tree | c661a235013397f3cbc229f36b9766efc99473dd /mail/exim/pkg-install | |
parent | 6450de95965a45b97219202c0a590da46cbcfc68 (diff) |
Notes
Diffstat (limited to 'mail/exim/pkg-install')
-rw-r--r-- | mail/exim/pkg-install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/exim/pkg-install b/mail/exim/pkg-install index d9f99317e393..843fc2fc6b1d 100644 --- a/mail/exim/pkg-install +++ b/mail/exim/pkg-install @@ -30,7 +30,7 @@ fi if [ "$2" = "POST-INSTALL" ]; then cf=$PKG_PREFIX/etc/exim/configure if [ -e $cf ]; then - if grep -q '^[^#]*hostlist.*relay_from_hosts.*=.*127.0.0.1' $cf + if /usr/bin/grep -q '^[^#]*hostlist.*relay_from_hosts.*=.*127.0.0.1' $cf then echo echo "============================================================" @@ -46,7 +46,7 @@ if [ "$2" = "POST-INSTALL" ]; then echo "============================================================" fi fi - if ! grep -qs "^exim_enable" /etc/rc.conf + if ! /usr/bin/grep -qs "^exim_enable" /etc/rc.conf then echo echo "Don't forget to add 'exim_enable=\"YES\"' to rc.conf(5)" |