Changeset 415

Show
Ignore:
Timestamp:
03/16/07 17:30:24 (2 years ago)
Author:
rats
Message:

* fixed bug #106: VHCS Omega frontend not working on setup

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r414 r415  
    1111|               * gui: disable stats-alias in client menu         | 
    1212\_________________________________________________________________/ 
     13 
     142007-03-15 Benedikt Heintel 
     15        - SETUP: 
     16                * fixed bug #106: VHCS Omega frontend not working on setup 
    1317 
    14182007-03-15 Benedikt Heintel 
  • trunk/configs/apache/httpd.conf

    r414 r415  
    4848# Temporary changed; now it's working 
    4949# will be replaced in future 
    50 <VirtualHost {IP}:80> 
     50<VirtualHost {HOST_IP}:80> 
    5151 
    5252    DocumentRoot /var/www/vhcs2/gui 
  • trunk/engine/setup/vhcs2-setup

    r409 r415  
    16571657        return $rs if ($rs != 0); 
    16581658 
     1659        my %tag_hash = ( 
     1660                                        '{HOST_IP}' => $main::cfg{'BASE_SERVER_IP'}, 
     1661                                        ); 
     1662 
     1663        ($rs, $cfg) = prep_tpl(\%tag_hash, $cfg_tpl); 
     1664 
     1665        return $rs if ($rs != 0); 
     1666 
    16591667        $rs = store_file($main::cfg{'APACHE_CONF_FILE'}, $cfg_tpl, 'root', 'root', 0644); 
    16601668