diff --git a/commons_groups.info b/commons_groups.info
index 6f81e1d..b6eac68 100644
--- a/commons_groups.info
+++ b/commons_groups.info
@@ -47,6 +47,7 @@ features[variable][] = menu_parent_group
 features[variable][] = node_options_group
 features[variable][] = node_preview_group
 features[variable][] = node_submitted_group
+features[variable][] = og_group_manager_default_rids_node_group
 features[variable][] = pathauto_node_group_pattern
 features[variable][] = pathauto_node_pattern
 features[views_view][] = commons_bw_all
diff --git a/commons_groups.install b/commons_groups.install
index a7bc43c..7774572 100644
--- a/commons_groups.install
+++ b/commons_groups.install
@@ -6,4 +6,28 @@
 function commons_groups_update_3100() {
   features_revert(array('commons_groups' => array('variable')));
   return array();
+}
+/**
+* Grant users the "group organizer" role after she's created a group.
+*/
+function commons_groups_update_3101() {
+  // Change the OG adminstrator role name to 'Organizer'.
+  $result = db_update('og_role')
+    ->fields(array('name' => 'Organizers'))
+    ->condition('rid', 3, '=')
+    ->execute();
+  // We've updated the og_group_manager_default_rids_node_group variable.
+  features_revert(array('commons_groups' => array('variable')));
+  return array();
+}
+
+/**
+* Ensure that the anonymous users is not listed as a group member,
+* per http://drupal.org/node/1910874.
+*/
+function commons_groups_update_3102() {
+  $delete = db_delete('og_users_roles')
+    ->condition('uid', 0, '=')
+    ->execute();
+  return array();
 }
\ No newline at end of file
diff --git a/commons_groups.strongarm.inc b/commons_groups.strongarm.inc
index eac0507..42578b6 100644
--- a/commons_groups.strongarm.inc
+++ b/commons_groups.strongarm.inc
@@ -125,6 +125,17 @@ function commons_groups_strongarm() {
   $strongarm = new stdClass();
   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
   $strongarm->api_version = 1;
+  $strongarm->name = 'og_group_manager_default_rids_node_group';
+  $strongarm->value = array(
+    3 => '3',
+  );
+  $export['og_group_manager_default_rids_node_group'] = $strongarm;
+
+
+
+  $strongarm = new stdClass();
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
   $strongarm->name = 'pathauto_node_pattern';
   $strongarm->value = 'groups/[node:og-group-ref:0:title]/[node:title]';
   $export['pathauto_node_pattern'] = $strongarm;
