Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No Ubuntu Required #41

Merged
merged 1 commit into from
Dec 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# python isn't installed by default on ubuntu 16.04 so we need
# to do that with the raw command before
- name: install python
raw: test -e /usr/bin/python || apt-get install -y python
raw: test -e /usr/bin/python || (apt-get update; apt-get install -y python;)
register: output
changed_when:
- output.stdout != ""
Expand Down
6 changes: 3 additions & 3 deletions roles/internal/webserver-app/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ webserver_app_apache: yes
webserver_app_drupal: yes
webserver_app_jwt: yes

webserver_app_jwt_key_path: /home/ubuntu/auth
webserver_app_jwt_config_path: /home/ubuntu/configs/jwt
webserver_app_jwt_key_path: /opt/islandora/auth
webserver_app_jwt_config_path: /opt/islandora/configs/jwt

webserver_app_drupal_config_path: /home/ubuntu/configs/drupal
webserver_app_drupal_config_path: /opt/islandora/configs/drupal

webserver_app_user: ubuntu
solr_user: solr
Expand Down