several updates that were missed.
diff --git a/.gitignore b/.gitignore
index 75a0526..f9f22d2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -110,3 +110,4 @@
 .idea
 *iml
 *retry
+.galaxy_install_info
diff --git a/meta/main.yml b/meta/main.yml
index c493f0b..e9668c2 100644
--- a/meta/main.yml
+++ b/meta/main.yml
@@ -12,4 +12,5 @@
   galaxy_tags:
   - apigee
   - opdk
-dependencies: []
+dependencies:
+- { role: apigee-opdk-setup-default-settings }
diff --git a/tasks/main.yml b/tasks/main.yml
index 4b06f27..c214457 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -4,6 +4,12 @@
   group:
     name: "{{ opdk_group_name }}"
     state: present
+#  register: group_status
+#
+#- name: Cache group status
+#  cache:
+#    key: group_status
+#    value: "{{ group_status.state | lower == 'present' }}"
 
 - name: Create the apigee user
   user:
@@ -58,4 +64,3 @@
     owner: '{{ opdk_user_name }}'
     mode: 0755
     state: directory
-  when: '{{ not installation_home_dir_state.stat.exists }}'