remove useless test -x for init.d services, invoke-rc.d takes care of that

This commit is contained in:
Antoine Beaupré 2007-09-09 20:32:16 +00:00
parent 233397e37a
commit 06fe7d5e98
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ fi
for service in $SERVICES postfix bind9 courier-authdaemon \
courier-imap courier-imap-ssl courier-pop courier-pop-ssl \
cron proftpd; do
test -x /etc/init.d/$service && invoke-rc.d $service reload || true
invoke-rc.d $service reload || true
done
#######################################################################