diff --git a/roles/lokole/defaults/main.yml b/roles/lokole/defaults/main.yml index 887938e44..f57ab5f11 100644 --- a/roles/lokole/defaults/main.yml +++ b/roles/lokole/defaults/main.yml @@ -14,7 +14,8 @@ # https://pypi.org/project/opwen-email-client/ ...OR... HARDCODE EITHER HERE: #lokole_commit: # OPTIONAL: a 40-char git hash, from https://github.com/ascoderu/lokole/commits/master #lokole_version: # OPTIONAL: e.g. master or 0.5.10 or a version number from https://pypi.org/project/opwen-email-client/#history -lokole_repo: https://github.com/ascoderu/lokole.git@{{ lokole_commit }} # the lokole git repo location to pull from if lokole_commit is defined +# TODO: revert back to main repo after upstream PR is merged +lokole_repo: https://github.com/mabuelhagag/lokole.git@{{ lokole_commit }} # the lokole git repo location to pull from if lokole_commit is defined lokole_admin_user: admin # lowercase is nec here (even though uppercase Admin/changeme is IIAB's OOB recommendation: BOTH WORK to log in to http://box/lokole) lokole_admin_password: changeme diff --git a/roles/lokole/tasks/install.yml b/roles/lokole/tasks/install.yml index 782866744..a95d5b132 100644 --- a/roles/lokole/tasks/install.yml +++ b/roles/lokole/tasks/install.yml @@ -27,7 +27,6 @@ # For development purposes -- To install Lokole from a given commit, add the # following line to roles/lokole/defaults/main.yml: # lokole_commit: -# TODO: revert back to main remo after upstream PR is merged - name: "OPTIONAL: pip install opwen_email_client (Lokole, git commit {{ lokole_commit }}) from GitHub to {{ lokole_venv }}, if lokole_commit is defined" pip: name: "git+{{ lokole_repo }}@{{ lokole_commit }}#egg=opwen_email_client"