Author: pebender
Date: Tue Sep 16 16:44:07 2008
New Revision: 3760
Added:
trunk/gar-minimyth/html/minimyth/conf/minimyth.pm
Removed:
trunk/gar-minimyth/html/minimyth/conf/minimyth.script
Modified:
trunk/gar-minimyth/html/minimyth/conf/minimyth.conf
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/html/minimyth/document-configure.html
trunk/gar-minimyth/html/minimyth/document-minimyth_conf.html
trunk/gar-minimyth/script/meta/minimyth/files/source/initrd/sbin/init
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf.pm
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf/obsolete
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/conf
Log:
- Deprecated sh init scripts
- Made perl init scripts the default.
- Deprecated 'minimyth.script'.
- Users will need to convert from 'minimyth.script'
to 'minimyth.pm'.
- After release 59, support for the sh init scripts
and 'minimyth.script'
will be removed.
Modified: trunk/gar-minimyth/html/minimyth/conf/minimyth.conf
==============================================================================
--- trunk/gar-minimyth/html/minimyth/conf/minimyth.conf (original)
+++ trunk/gar-minimyth/html/minimyth/conf/minimyth.conf Tue Sep 16 16:44:07
2008
@@ -24,7 +24,6 @@
#
# MM_MINIMYTH_UPDATE_URL
# MM_MINIMYTH_BOOT_URL
-# MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT
# MM_MINIMYTH_FETCH_MINIMYTH_PM
################################################################################
#MM_MINIMYTH_BOOT_URL='http://tftp.home/minimyth/'
Added: trunk/gar-minimyth/html/minimyth/conf/minimyth.pm
==============================================================================
--- (empty file)
+++ trunk/gar-minimyth/html/minimyth/conf/minimyth.pm Tue Sep 16 16:44:07
2008
@@ -0,0 +1,67 @@
+#!/usr/bin/perl
+################################################################################
+# minimyth.pm
+#
+# The optional MiniMyth configuration package.
+#
+# For information on this file, see either
+# <http://minimyth.org/document.shtml>
+# or
+# <http://{frontend}/document.shtml>,
+# where '{frontend}' is the IPv4 address or hostname of your MiniMyth
frontend.
+#
+# A the time package is called, very little configuration has beeen
completed.
+# While kernel modules loaded by udev have been loaded, kernel modules
loaded by
+# other methods are not. In addition, very few services have been started.
+# Finally, name resolution (i.e. DNS) has not been configured. As a
result, you
+# need to be careful about what you assume is available. In particular, you
+# must use IP addresses rather than DNS names when refering to servers.
+################################################################################
+
+use strict;
+use warnings;
+
+require MiniMyth;
+
+sub start
+{
+ my $self = shift;
+ my $minimyth = shift;
+
+ # NFS mount a swap partition.
+ # This can be useful for MiniMyth frontends that have too little
memory to
+ # run without swap (i.e. MiniMyth frontends that have less than 512MB
of
+ # memory).
+ # For this to work, you need to prepare the swap file on the server.
This is
+ # done using the command:
+ # 'cd {swap-dir} ; dd if=/dev/zero of=<swap-file> bs=1k
count=<swap-size}'
+ # where <swap-dir> is the directory that will be exported and mounted
on
+ # the frontend as the directory containing the swap file, <swap-file>
is the
+ # name of the swap file, and <swap-size> is the size of the swap file
in
+ # kilobytes. Remember to use different swap files for each MiniMyth
frontend.
+# {
+# my $swap_url = '<swap-url>';
+# my $swap_file = '<swap-file>';
+# my $swap_device = '';
+# open(FILE, '-|', '/sbin/losetup -f') || die;
+# while(<FILE>)
+# {
+# chomp;
+# $swap_device = $_;
+# last;
+# }
+# close(FILE);
+# if ((! $swap_url) || (! $swap_file) || (! $swap_device))
+# {
+# die;
+# }
+# $minimyth->url_mount($swap_url, '/mnt/swap') || die;
+# system(qq(/sbin/losetup $swap_device "/mnt/swap/$swap_file")) &&
die;
+# system(qq(/sbin/mkswap $swap_device)) && die;
+# system(qq(/sbin/swapon $swap_device)) && die;
+# }
+
+ return 1;
+}
+
+1;
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 Tue Sep 16
16:44:07 2008
@@ -1,7 +1,7 @@
MiniMyth Changelog
--------------------------------------------------------------------------------
-Changes since 58 (2008-09-15):
+Changes since 58 (2008-09-16):
Current MythTV versions
MythTV 0.20-softpad: version 0.20.2.softpad, release-0-20-fixes branch
svn 16082,
@@ -17,7 +17,14 @@
- Removed support for 0.20 from init scripts.
- Re-added MM_PLUGIN_DVD_ENABLED.
-Modified MPlayer SVN version:
+Deprecated sh init scripts
+ - Made perl init scripts the default.
+ - Deprecated 'minimyth.script'.
+ - Users will need to convert from 'minimyth.script'
to 'minimyth.pm'.
+ - After release 59, support for the sh init scripts
and 'minimyth.script'
+ will be removed.
+
+Modified MPlayer SVN version
- Changed it to use the external dvdread libraries.
Modified MiniMyth configuration
Modified: trunk/gar-minimyth/html/minimyth/document-configure.html
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-configure.html (original)
+++ trunk/gar-minimyth/html/minimyth/document-configure.html Tue Sep 16
16:44:07 2008
@@ -31,8 +31,8 @@
<dt><a href="#dhcp">Configuration obtained from the DHCP
server</a></dt>
<dt><a href="#location">Location of configuration
files</a></dt>
<dt><a href="#minimyth_conf">Configuration obtained from the
MiniMyth configuration file</a></dt>
- <dt><a href="#minimyth_script">Configuration obtained from the
MiniMyth configuration script (sh init)</a></dt>
- <dt><a href="#minimyth_pm">Configuration obtained from the
MiniMyth configuration script (perl init)</a></dt>
+ <dt><a href="#minimyth_pm">Configuration obtained from the
MiniMyth configuration package</a></dt>
+ <dt><a href="#minimyth_script">Configuration obtained from the
MiniMyth configuration script (deprecated)</a></dt>
<dt><a href="#misc">Configuration obtained from miscellaneous
configuration files</a></dt>
</dl>
</div>
@@ -45,12 +45,12 @@
<li><a href="#bootline">the boot line</a>,</li>
<li><a href="#dhcp">the DHCP server</a>,</li>
<li><a href="#minimyth_conf">the MiniMyth configuration
file</a>,</li>
- <li><a href="#minimyth_script">the MiniMyth configuration
script (sh init)</a> or</li>
- <li><a href="#minimyth_pm">the MiniMyth configuration script
(perl init)</a>, and</li>
+ <li><a href="#minimyth_pm">the MiniMyth configuration
package</a>, and</li>
+ <li><a href="#minimyth_script">the MiniMyth configuration
script (deprecated)</a> or</li>
<li><a href="#misc">miscellaneous configuration files</a>.</li>
</ul>
<p>
- Ideally, the MiniMyth configuration script and the
miscellaneous configuration files should not be needed.
+ Ideally, the MiniMyth configuration package and the
miscellaneous configuration files should not be needed.
However, MiniMyth still lacks configuration files for many
remote control recievers, remote controls, and LCD and VFD displays.
In addition, MiniMyth still lacks the flexibility needed for
some X Window System configurations.
If you have configuration files for your hardware and setup
that you would like included in MiniMyth, then
@@ -103,7 +103,7 @@
<dd>
<p>
Selects the MiniMyth init script type.
- Valid values are "sh" and "perl", with "sh" being the
default.
+ Valid values are "sh" and "perl", with "perl" being
the default.
</p>
</dd>
</dl>
@@ -359,7 +359,7 @@
<div id="location" class="section">
<div class="heading">Location of configuration files</div>
<p>
- MiniMyth looks for configuration files and scripts in the
MiniMyth configuration directories.
+ MiniMyth looks for configuration files and packages in the
MiniMyth configuration directories.
There are two MiniMyth configuration directories:
the read-only configuration directory and the read-write
configuration directory.
</p>
@@ -428,43 +428,17 @@
<a href="document-minimyth_conf.html">minimyth.conf
description</a>.
</p>
</div>
- <div id="minimyth_script" class="section">
- <div class="heading">Configuration obtained from the MiniMyth
configuration script (sh init)</div>
- <p>
- The MiniMyth configuration script used when MiniMyth is using
sh scripted init
- (see <a
href="document-configure.html#MM_INIT_TYPE">MM_INIT_TYPE</a>).
- The MiniMyth configuration script is called 'minimyth.script'.
- The MiniMyth configuration script is optional.
- The MiniMyth configuration script is a shell script that is
executed by MiniMyth
- after MiniMyth has retrieved and imported (but not processed)
the MiniMyth configuration file and
- updated DHCP configuration.
- You can use the MiniMyth configuration script to do things
such as change the startup or shutdown scripts.
- Whether or not 'minimyth.script' is retrieved depends on
- '<a
href="document-minimyth_conf.html#MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT">MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT</a>'.
- </p>
- <p>
- As mentioned above 'minimyth.script' is a shell script.
- The following is a stub for the shell script:
- </p>
- <pre>
-#!/bin/sh
-
-. /etc/rc.d/functions
-
-exit 0;
- </pre>
- </div>
<div id="minimyth_pm" class="section">
- <div class="heading">Configuration obtained from the MiniMyth
configuration script (perl init)</div>
+ <div class="heading">Configuration obtained from the MiniMyth
configuration package</div>
<p>
- The MiniMyth configuration script used when MiniMyth is using
perl scripted init
+ The MiniMyth configuration package used when MiniMyth is using
perl init scripts
(see <a
href="document-configure.html#MM_INIT_TYPE">MM_INIT_TYPE</a>).
- The MiniMyth configuration script is called 'minimyth.pm'.
- The MiniMyth configuration script is optional.
- The MiniMyth configuration script is a perl package that is
executed by MiniMyth
+ The MiniMyth configuration package is called 'minimyth.pm'.
+ The MiniMyth configuration package is optional.
+ The MiniMyth configuration package is a perl package that is
executed by MiniMyth
after MiniMyth has retrieved and imported (but not processed)
the MiniMyth configuration file and
updated DHCP configuration.
- You can use the MiniMyth configuration script to do things
such as change the startup or shutdown scripts.
+ You can use the MiniMyth configuration package to do things
such as change the startup or shutdown packages.
Whether or not 'minimyth.pm' is retrieved depends on
'<a
href="document-minimyth_conf.html#MM_MINIMYTH_FETCH_MINIMYTH_PM">MM_MINIMYTH_FETCH_MINIMYTH_PM</a>'.
</p>
@@ -496,6 +470,39 @@
1;
</pre>
</div>
+ <div id="minimyth_script" class="section">
+ <div class="heading">Configuration obtained from the MiniMyth
configuration script (deprecated)</div>
+ <p>
+ <em>
+ Warning:
+ 'minimyth.script' is deprecated.
+ Use
+ '<a href="#minimyth_pm">minimyth.pm</a>'
+ instead.
+ </em>
+ </p>
+ <p>
+ The MiniMyth configuration script is called 'minimyth.script'.
+ The MiniMyth configuration script is optional.
+ The MiniMyth configuration script is a shell script that is
executed by MiniMyth
+ after MiniMyth has retrieved and imported (but not processed)
the MiniMyth configuration file and
+ updated DHCP configuration.
+ You can use the MiniMyth configuration script to do things
such as change the startup or shutdown scripts.
+ Whether or not 'minimyth.script' is retrieved depends on
+ '<a
href="document-minimyth_conf.html#MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT">MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT</a>'.
+ </p>
+ <p>
+ As mentioned above 'minimyth.script' is a shell script.
+ The following is a stub for the shell script:
+ </p>
+ <pre>
+#!/bin/sh
+
+. /etc/rc.d/functions
+
+exit 0;
+ </pre>
+ </div>
<div id="misc" class="section">
<div class="heading">Configuration obtained from miscellaneous
configuration files</div>
<p>
@@ -664,9 +671,7 @@
<p>
If you want to override any other configuration files,
then you will need to use the
- <a href="#minimyth_script">MiniMyth configuration script (sh
init)</a>
- or
- <a href="#minimyth_pm">MiniMyth configuration script (perl
init)</a>.
+ <a href="#minimyth_pm">MiniMyth configuration package</a>.
</p>
</div>
</div>
@@ -683,7 +688,7 @@
alt="Valid CSS!" height="31" width="88" /></a>
</div>
<div class="version">
- Last Updated on 2008-09-10
+ Last Updated on 2008-09-16
<br />
< mailto : webmaster at minimyth dot org >
</div>
Modified: trunk/gar-minimyth/html/minimyth/document-minimyth_conf.html
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-minimyth_conf.html
(original)
+++ trunk/gar-minimyth/html/minimyth/document-minimyth_conf.html Tue Sep
16
16:44:07 2008
@@ -83,7 +83,7 @@
<ul>
<li><a
href="#MM_MINIMYTH_UPDATE_URL">MM_MINIMYTH_UPDATE_URL</a></li>
<li><a
href="#MM_MINIMYTH_BOOT_URL">MM_MINIMYTH_BOOT_URL</a></li>
- <li><a
href="#MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT">MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT</a></li>
+ <li><a
href="#MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT">MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT
(deprecated)</a></li>
<li><a
href="#MM_MINIMYTH_FETCH_MINIMYTH_PM">MM_MINIMYTH_FETCH_MINIMYTH_PM</a></li>
</ul>
<dl>
@@ -216,31 +216,37 @@
</Location>
</VirtualHost></pre>
</dd>
- <dt
id="MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT"><strong>MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT</strong></dt>
+ <dt
id="MM_MINIMYTH_FETCH_MINIMYTH_PM"><strong>MM_MINIMYTH_FETCH_MINIMYTH_PM</strong></dt>
<dd>
<p>
Indicate whether or not to fetch the
- '<a
href="document-configure.html#minimyth_script">minimyth.script</a>'
+ '<a
href="document-configure.html#minimyth_pm">minimyth.pm</a>'
file from the frontend's MiniMyth read-only configuration
directory.
Valid values are 'yes' and 'no', with 'no' the default.
</p>
<p>
The variable is only valid when
- '<a
href="document-configure.html#MM_INIT_TYPE">MM_INIT_TYPE</a>' is 'sh'.
+ '<a
href="document-configure.html#MM_INIT_TYPE">MM_INIT_TYPE</a>' is 'perl'.
</p>
</dd>
- <dt
id="MM_MINIMYTH_FETCH_MINIMYTH_PM"><strong>MM_MINIMYTH_FETCH_MINIMYTH_PM</strong></dt>
+ <dt
id="MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT"><strong>MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT
(deprecated)</strong></dt>
<dd>
<p>
+ <em>
+ Warning:
+ '<a
href="document-configure.html#minimyth_script">minimyth.script</a>'
+ is deprecated.
+ Use
+ '<a
href="document-configure.html#minimyth_pm">minimyth.pm</a>'
+ instead.
+ </em>
+ </p>
+ <p>
Indicate whether or not to fetch the
- '<a
href="document-configure.html#minimyth_pm">minimyth.pm</a>'
+ '<a
href="document-configure.html#minimyth_script">minimyth.script</a>'
file from the frontend's MiniMyth read-only configuration
directory.
Valid values are 'yes' and 'no', with 'no' the default.
</p>
- <p>
- The variable is only valid when
- '<a
href="document-configure.html#MM_INIT_TYPE">MM_INIT_TYPE</a>' is 'perl'.
- </p>
</dd>
</dl>
</div>
@@ -1557,7 +1563,7 @@
</dd>
</dl>
<p>
- Alternatively, you can mount the extras directory by adding
the appropriate commands to the 'minimyth.script' script.
+ Alternatively, you can mount the extras directory by adding
the appropriate commands to the 'minimyth.pm' package.
</p>
</div>
<div id="MM_CODECS" class="section">
@@ -1623,7 +1629,7 @@
</dd>
</dl>
<p>
- Alternatively, you can mount the CODECs directory by adding
the appropriate commands to the 'minimyth.script' script.
+ Alternatively, you can mount the CODECs directory by adding
the appropriate commands to the 'minimyth.pm' package.
</p>
</div>
<div id="MM_THEME" class="section">
@@ -1778,7 +1784,7 @@
</dd>
</dl>
<p>
- Alternatively, you can mount the theme directories by adding
the appropriate commands to the 'minimyth.script' script.
+ Alternatively, you can mount the theme directories by adding
the appropriate commands to the 'minimyth.pm' package.
</p>
</div>
<div id="MM_MEDIA" class="section">
@@ -1952,21 +1958,20 @@
</dd>
</dl>
<p>
- Alternatively, you can mount remote directories by adding the
appropriate commands to the 'minimyth.script' script.
+ Alternatively, you can mount remote directories by adding the
appropriate commands to the 'minimyth.pm' package.
If you do this, there are some things that you should know.
</p>
<p>
First, it is suggested that you create new mount points
below '/mnt'.
</p>
<p>
- Second, there is a shell function called 'mm_mount_url' that
you might find useful.
- You can access this function by including the
file '/etc/minimyth.d/minimyth.functions' in 'minimyth.script'.
+ Second, there is a MiniMyth.pm function
called 'Minimyth::mount_url' that you might find useful.
This function takes two arguments:
</p>
<dl>
- <dt>URL: required argument:</dt>
+ <dt>url: required argument:</dt>
<dd>This argument is described above.</dd>
- <dt>MOUNT_DIR: required argument:</dt>
+ <dt>mount_dir: required argument:</dt>
<dd>The local directory (e.g. /mnt/music) where the URL will
be mounted.</dd>
</dl>
</div>
@@ -2409,7 +2414,7 @@
</dd>
</dl>
<p>
- Alternatively, you can configure lirc by adding the
appropriate commands to 'minimyth.script' script.
+ Alternatively, you can configure lirc by adding the
appropriate commands to 'minimyth.pm' package.
If you do this, when you run lircd, you need to specify
the driver using the '--driver' command line option and
the device using the '--device' command line option.
@@ -2559,7 +2564,7 @@
</dd>
</dl>
<p>
- Alternatively, you can configure LCDproc by adding the
appropiate commands to 'minimyth.script' script.
+ Alternatively, you can configure LCDproc by adding the
appropiate commands to 'minimyth.pm' package.
If the 'lcdproc' init script detects that LCDd is already
running, then it will exit immediately.
</p>
</div>
@@ -2794,7 +2799,7 @@
alt="Valid CSS!" height="31" width="88" /></a>
</div>
<div class="version">
- Last Updated on 2008-09-15
+ Last Updated on 2008-09-16
<br />
< mailto : webmaster at minimyth dot org >
</div>
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/initrd/sbin/init
==============================================================================
--- trunk/gar-minimyth/script/meta/minimyth/files/source/initrd/sbin/init
(original)
+++ trunk/gar-minimyth/script/meta/minimyth/files/source/initrd/sbin/init
Tue Sep 16 16:44:07 2008
@@ -12,7 +12,7 @@
/bin/echo -n "start date and time: " >> /init.log
/bin/date -u +'%Y-%m-%d %H:%M:%S %Z' >> /init.log
-MM_INIT_TYPE=${MM_INIT_TYPE:-'sh'}
+MM_INIT_TYPE=${MM_INIT_TYPE:-'perl'}
# Save boot line options that we need later.
/bin/mkdir -p /etc/conf.d/
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf.pm
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf.pm
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf.pm
Tue Sep 16 16:44:07 2008
@@ -84,6 +84,31 @@
close(FILE);
}
+ # Fetch and run the deprecated 'minimyth.script'.
+ {
+ my $group = __PACKAGE__ . '::' . 'MM_MINIMYTH';
+ eval "require $group";
+ my $group_var_list = $group->var_list();
+ $self->_run_var($minimyth,
$group_var_list, 'MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT');
+ }
+ if ($minimyth->var_get('MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT') eq 'yes')
+ {
+ $minimyth->message_output('info', "fetching the deprecated
configuration script ...");
+ unlink('/etc/minimyth.d/minimyth.script');
+
$minimyth->confro_get('/minimyth.script', '/etc/minimyth.d/minimyth.script');
+ if (! -e '/etc/minimyth.d/minimyth.script')
+ {
+ $minimyth->message_output('err', "error: failed to
fetch 'minimyth.script' file.");
+ }
+ }
+ if (-f '/etc/minimyth.d/minimyth.script')
+ {
+ $minimyth->message_log('info', "warning: 'minimyth.script' is
deprecated.");
+ $minimyth->message_log('info', "use 'minimyth.pm' rather
than 'minimyth.script'.");
+ $minimyth->var_save({ 'file' => '/etc/conf.d/minimyth.raw' });
+ system(qq(/etc/minimyth.d/minimyth.script));
+ }
+
# Fetch and run 'minimyth.pm'.
{
my $group = __PACKAGE__ . '::' . 'MM_MINIMYTH';
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf/obsolete
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf/obsolete
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/conf/obsolete
Tue Sep 16 16:44:07 2008
@@ -29,7 +29,6 @@
MM_LIRC_REMOTE
MM_LIRC_SLEEP_X_RESTART_ENABLED
MM_LOG_SERVERS
-MM_MINIMYTH_FETCH_MINIMYTH_SCRIPT
MM_MINIMYTH_FETCH_MINIMYTH_TRIGGER
MM_MYTHAUDIO_ENABLED
MM_MYTHAUDIO_MOUNTPOINT
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/conf
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/conf
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/conf
Tue Sep 16 16:44:07 2008
@@ -22,6 +22,9 @@
local file_list
local variable
+ mm_message_log info "warning: sh init scripts are deprecated."
+ mm_message_log info "use perl init scripts rather than sh init
scripts."
+
# Unset variables set by the processed MiniMyth configuration file.
# This is a hack for testing that should never get invoked during
normal boot.
if /usr/bin/test -e /etc/conf.d/dhcp.override ; then
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---