Author: pebender
Date: Sat Jan 10 15:31:36 2009
New Revision: 4215
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf.pm
Log:
- Fixed a bug that caused perl init scripts to not fail when required file
was not fetched from the read-only configuration directory.
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 Sat Jan 10
15:31:36 2009
@@ -53,6 +53,8 @@
- Fixed a bug that caused there to be no PCI devices in
/dev/persistent.
- Fixed missing DVB support in MythTV 0.20 and 0.20 softpad.
- Fixed a bug that could cause DHCP to fail to use MM_DHCP_* variables.
+ - Fixed a bug that caused perl init scripts to not fail when required
file
+ was not fetched from the read-only configuration directory.
Updated packages
Updated disk/hdparm.
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf.pm
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf.pm
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init/conf.pm
Sat Jan 10 15:31:36 2009
@@ -540,7 +540,7 @@
my $result = $minimyth->confro_get($name_remote,
$name_local);
if (! -e $name_local)
{
- $minimyth->message_log('err', qq(failed to fetch
MiniMyth read-only configuration file ') . $name_remote . qq('));
+ $minimyth->message_output('err', qq(failed to fetch
MiniMyth read-only configuration file ') . $name_remote . qq('));
}
else
{
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---