Changeset 1899

Show
Ignore:
Timestamp:
08/26/07 22:44:53 (1 year ago)
Author:
benjamin
Message:

force the restart of apache & apache-ssl : Fixes #1000

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • alternc/trunk/install/alternc.install

    r1894 r1899  
    249249 
    250250####################################################################### 
    251 # Restart services 
     251# Reload services 
    252252# 
    253253for service in apache apache-ssl postfix bind9 courier-authdaemon \ 
    254254               courier-imap courier-imap-ssl courier-pop courier-pop-ssl \ 
    255255               cron proftpd; do 
    256     test -x /etc/init.d/$service && invoke-rc.d $service restart || true 
     256    test -x /etc/init.d/$service && invoke-rc.d $service reload || true 
    257257done 
    258258 
     
    287287fi 
    288288 
     289# We should restart apaches after all configuration stuff ... 
     290for service in apache apache-ssl ; do 
     291    test -x /etc/init.d/$service && invoke-rc.d $service restart || true 
     292done