Changeset 1951

Show
Ignore:
Timestamp:
09/27/07 10:29:11 (1 year ago)
Author:
benjamin
Message:

restart with stop/start instead of restart (...) apache AND apache2 (test)

Files:

Legend:

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

    r1950 r1951  
    287287 
    288288# We should restart apaches after all configuration stuff ... 
    289 for service in apache apache-ssl ; do 
    290     test -x /etc/init.d/$service && invoke-rc.d $service restart || true 
    291 done 
     289for service in apache apache-ssl apache2 ; do 
     290    test -x /etc/init.d/$service && invoke-rc.d $service stop || true 
     291done 
     292for service in apache apache-ssl apache2 ; do 
     293    test -x /etc/init.d/$service && invoke-rc.d $service start || true 
     294done