Skip to content

Commit

Permalink
Add passwords.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathangreen committed Dec 1, 2017
1 parent a09863d commit 50557a5
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 7 deletions.
File renamed without changes.
17 changes: 17 additions & 0 deletions inventory/vagrant/group_vars/all/passwords.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---

# Drupal
drupal_db_password: islandora
drupal_account_pass: islandora

# MySQL/Postgres
islandora_db_root_password: islandora

# Tomcat
islandora_tomcat_password: islandora

# Syn
islandora_syn_token: islandora

# Cantaloupe
cantaloupe_admin_password: islandora
4 changes: 2 additions & 2 deletions inventory/vagrant/group_vars/database.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
mysql_root_username: root
mysql_root_password: islandora
mysql_root_password: "{{ islandora_db_root_password }}"

postgresql_users:
- name: root
password: islandora
password: "{{ islandora_db_root_password }}"
db: "{{ drupal_db_name }}"

postgresql_databases:
Expand Down
5 changes: 2 additions & 3 deletions inventory/vagrant/group_vars/tomcat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

tomcat8_users:
- username: islandora
password: islandora
password: "{{ islandora_tomcat_password }}"
roles:
- manager-gui

Expand Down Expand Up @@ -36,14 +36,13 @@ fcrepo_syn_tokens:
- user: admin
roles:
- admin
token: islandora
token: "{{ islandora_syn_token }}"

cantaloupe_deploy_war: yes
cantaloupe_deploy_war_path: "{{ tomcat8_home }}/webapps"
cantaloupe_user: tomcat8
cantaloupe_group: tomcat8
cantaloupe_admin_enabled: "true"
cantaloupe_admin_password: islandora
cantaloupe_OpenJpegProcessor_path_to_binaries: /usr/local/bin
cantaloupe_log_application_ConsoleAppender_enabled: "false"
cantaloupe_log_application_FileAppender_enabled: "true"
Expand Down
2 changes: 0 additions & 2 deletions inventory/vagrant/group_vars/webserver/drupal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,13 @@ drupal_composer_project_package: "drupal-composer/drupal-project:8.x-dev"
drupal_composer_project_options: "--prefer-dist --stability dev --no-interaction"
drupal_core_path: "{{ drupal_composer_install_dir }}/web"
drupal_db_user: root
drupal_db_password: islandora
drupal_db_name: drupal8
drupal_db_backend: "{{ claw_db }}"
drupal_db_host: "127.0.0.1"
drupal_domain: "claw.dev"
drupal_site_name: "Islandora-CLAW"
drupal_install_profile: standard
drupal_account_name: admin
drupal_account_pass: islandora
drupal_enable_modules:
- rdf
- responsive_image
Expand Down

0 comments on commit 50557a5

Please sign in to comment.