Author: pebender
Date: Fri Sep 5 21:03:10 2008
New Revision: 3705
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/x.pm
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/x
Log:
- Fixed bug that caused mm_sleep_on_ss to not be stopped at shutdown.
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 Fri Sep 5
21:03:10 2008
@@ -68,6 +68,7 @@
- Fixed bug in format of the default MM_EXTRAS_URL value.
- Fixed bug that caused hostname '' to be '?', causing retrieval of
MiniMyth configuration files to fail.
+ - Fixed bug that caused mm_sleep_on_ss to not be stopped at shutdown.
Modified build system
- Added gar-minimyth-<version>.tar.bz2 to the root file system image so
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/x.pm
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/x.pm
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/x.pm
Fri Sep 5 21:03:10 2008
@@ -314,7 +314,7 @@
my $minimyth = shift;
$minimyth->message_output('info', "stopping X ...");
- $minimyth->application_stop('mm_sleep_on_xscreensaver');
+ $minimyth->application_stop('mm_sleep_on_ss');
$minimyth->x_stop();
return 1;
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/x
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/x
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/x
Fri Sep 5 21:03:10 2008
@@ -211,8 +211,8 @@
stop() {
mm_message_output info "stopping X ..."
- if /usr/bin/test -n "`/bin/pidof mm_sleep_on_xscreensaver`" ; then
- /bin/kill `/bin/pidof mm_sleep_on_xscreensaver`
+ if /usr/bin/test -n "`/bin/pidof mm_sleep_on_ss`" ; then
+ /bin/kill `/bin/pidof mm_sleep_on_ss`
fi
mm_x_stop
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---