diff --git a/bootstrap.yml b/bootstrap.yml index 3a045539..f0e031a6 100644 --- a/bootstrap.yml +++ b/bootstrap.yml @@ -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 != "" diff --git a/roles/internal/webserver-app/defaults/main.yml b/roles/internal/webserver-app/defaults/main.yml index f32d26b2..74cf3be1 100644 --- a/roles/internal/webserver-app/defaults/main.yml +++ b/roles/internal/webserver-app/defaults/main.yml @@ -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