Changeset 447 in MondoRescue
- Timestamp:
- Mar 17, 2006, 10:16:24 AM (19 years ago)
- Location:
- branches/stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/mindi
r441 r447 1340 1340 partition_mountpt=`tr -s '\t' ' ' < $MY_FSTAB | grep -w "$current_partition" | grep -vx " *#.*" | $AWK '{print $2}' | head -n1` 1341 1341 redhat_label="" 1342 if [ "`echo "$current_partition" | fgrep -i "LABEL="`" != "" ] ; then 1342 if [ "`echo "$current_partition" | fgrep -i "LABEL=SWAP"`" != "" ] ; then 1343 redhat_label=`echo "$current_partition" | cut -d'=' -f2` 1344 actual_dev="/dev/`echo "$redhat_label" | cut -d '-' -f2`" 1345 current_partition=$actual_dev 1346 elif [ "`echo "$current_partition" | fgrep -i "LABEL="`" != "" ] ; then 1343 1347 str_to_find_fmt_with=$current_partition 1344 1348 redhat_label=`echo "$current_partition" | cut -d'=' -f2` -
branches/stable/website/about.shtml
r396 r447 90 90 <P ALIGN=CENTER> 91 91 <I>Michael Clark</I><BR> 92 original DPF docs</P>92 original PDF docs</P> 93 93 <div class="h2-5"> 94 94 <h2>The Mondo Rescue Community</h2> -
branches/stable/website/mondorescue.org.conf
r389 r447 2 2 # Apache Virtual Host Configuration File 3 3 # 4 NameVirtualHost * :804 NameVirtualHost * 5 5 6 <VirtualHost * :80>6 <VirtualHost *> 7 7 ServerName www.mondorescue.org 8 #ServerAlias mondorescue.org 8 9 ServerAdmin webmaster@mondorescue.org 9 10 DocumentRoot /mondo/www/html/mondo 10 11 CustomLog /var/log/httpd/www.mondorescue.org/access_log combined 11 12 Errorlog /var/log/httpd/www.mondorescue.org/error_log 13 RewriteEngine On 14 RewriteRule ^/index\.html$ /index.shtml 15 RewriteRule ^/$ /index.shtml 12 16 <Directory "/mondo/www/html/mondo"> 17 DirectoryIndex index.shtml 13 18 Options -Indexes MultiViews FollowSymLinks +Includes 14 19 AllowOverride None … … 18 23 </VirtualHost> 19 24 20 <VirtualHost *:80> 25 <VirtualHost *> 26 ServerName oldwww.mondorescue.org 27 ServerAdmin webmaster@mondorescue.org 28 DocumentRoot /mondo/www/html/oldwww 29 CustomLog /var/log/httpd/oldwww.mondorescue.org/access_log combined 30 Errorlog /var/log/httpd/oldwww.mondorescue.org/error_log 31 <Directory "/mondo/www/html/oldwww"> 32 Options -Indexes MultiViews FollowSymLinks +Includes 33 AllowOverride None 34 Order allow,deny 35 Allow from all 36 </Directory> 37 </VirtualHost> 38 39 <VirtualHost *> 21 40 ServerName www1.mondorescue.org 22 41 ServerAdmin webmaster@mondorescue.org … … 31 50 </Directory> 32 51 </VirtualHost> 52 53 <VirtualHost *> 54 ServerName www.mondorescue.com 55 ServerAdmin webmaster@mondorescue.com 56 DocumentRoot /mondo/www/html/mondo 57 CustomLog /var/log/httpd/www.mondorescue.com/access_log combined 58 Errorlog /var/log/httpd/www.mondorescue.com/error_log 59 <Directory "/mondo/www/html/mondo"> 60 DirectoryIndex index.shtml 61 Options -Indexes MultiViews FollowSymLinks +Includes 62 AllowOverride None 63 Order allow,deny 64 Allow from all 65 </Directory> 66 </VirtualHost>
Note:
See TracChangeset
for help on using the changeset viewer.