Index: README.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/systemmask/README.txt,v
retrieving revision 1.2
diff -u -r1.2 README.txt
--- README.txt	23 Apr 2008 13:38:57 -0000	1.2
+++ README.txt	11 Nov 2008 03:56:24 -0000
@@ -1,9 +1,68 @@
 systemmask
 ==================================================
 Enables custom requiring and hiding of designated 
-modules at admin/modules.  Good for Drupal distros 
-and hosts.
+modules at admin/build/modules.  Good for Drupal
+distros and hosts.
 
+This module was originally written for civicspace's
+provisioning system, in which there was a need to
+have modules running that no admins, including
+uid #1, from disabling.
+
+INSTALLATION
+Drop the module into the sites/all/modules
+directory or into a site's module directory.
+
+This module contains no user interface. To enable
+run the following query:
+
+update system insert(status) values (1)
+  where module = 'systemmask';
+
+OPERATION
+The module uses hook_form_alter to suppress
+certain modules from getting listed on the
+admin/build/modules page and its associated
+permissions from getting displayed on the 
+admin/user/access page.
+
+CONFIGURATION
+This modules contains no configuration settings
+or admin pages.
+
+To suppress a hide a module and suppress its
+permissions, modify the settings.php by modifying
+the $conf array like you see in this example:
+
+$conf = array(
+  'systemmask_system' => array(
+    'modules' => array(
+      'required' => array('menu', 'book'),
+      'hidden' => array('story')
+    )
+  )
+);
+
+All modules listed in the 'required' array
+cannot be disabled. All modules listed in
+the 'hidden' array will not be listed on the
+modules page and their permissions will not
+be available for any users.
+
+NOTE: a module should appear either in the
+'required' array listing or the 'hidden' array
+listing, not both.
+
+UNINSTALL
+Run the following query:
+
+update system insert(status) values (0)
+  where module = 'systemmask';
+
+Remove the appropriate $conf array assignments
+from the setting.php file.
+
+CREDITS
 systemmask development has been sponsored by 
 CivicSpaceLabs.org.  After May 10, 2007 the module 
 has been maintained by Robin Monks, 
