Author: pebender
Date: Thu Nov  6 08:36:42 2008
New Revision: 3919

Modified:
    trunk/gar-minimyth/html/minimyth/document-changelog.txt
     
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/log.pm
     
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/time.pm

Log:
- Fixed bug in perl based log init scripts that sometimes caused it to
   fail to correctly determine the log server.
- Fixed bug in perl based log init scripts that sometimes caused it to
   fail to correctly determine the time server.



Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt     (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt     Thu Nov  6  
08:36:42 2008
@@ -1,7 +1,7 @@
  MiniMyth Changelog

   
--------------------------------------------------------------------------------
-Changes since 59 (2008-11-05):
+Changes since 59 (2008-11-06):

  Current MythTV versions
      MythTV 0.20-softpad: version 0.20.2.softpad, release-0-20-fixes branch  
svn 16082,
@@ -27,6 +27,10 @@
  Fixed bugs
      - Fixed bug in MiniMyth::url_mount that caused mount options contained  
in
        the URL's query part to be ignored.
+    - Fixed bug in perl based log init scripts that sometimes caused it to
+      fail to correctly determine the log server.
+    - Fixed bug in perl based log init scripts that sometimes caused it to
+      fail to correctly determine the time server.
      - Worked around an issue in the perl based media init script that  
caused
        MM_MEDIA_TV_URL and MM_MEDIA_TV_MOUNTPOINT to fail.
      - Fixed init so that MM_MEDIA_TV_URL does not need to be writable by

Modified:  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/log.pm
==============================================================================
---  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/log.pm
    
(original)
+++  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/log.pm
    
Thu Nov  6 08:36:42 2008
@@ -21,6 +21,7 @@
      {
          foreach (grep(s/^server +([^ ]+) *$/$1/, (<FILE>)))
          {
+            chomp;
              $log_server = $_;
              last;
          }

Modified:  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/time.pm
==============================================================================
---  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/time.pm
   
(original)
+++  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/time.pm
   
Thu Nov  6 08:36:42 2008
@@ -21,6 +21,7 @@
      {
          foreach (grep(s/^server +([^ ]*) *$/$1/, (<FILE>)))
          {
+            chomp;
              push(@ntp_servers, $_);
          }
          close(FILE);

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to