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

add installer breakpoint #350

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,10 @@ dataverse:
version: '6.2'
# robots_txt_url: https://guides.dataverse.org/en/latest/_downloads/3a5cd7a283eecd5e93289e30af713554/robots.txt

breakpoint:
installer: false
test_suite: false

build_guides: false

db:
Expand Down
5 changes: 5 additions & 0 deletions tasks/dataverse-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,11 @@
python_bin: '/usr/bin/python3'
when: ansible_os_family == "Debian"

- name: installer breakpoint
ansible.builtin.fail:
msg: "You may now run the installer as {{ dataverse.payara.user }} in /tmp/dvinstall with python ./install.py -f --config_file=default.config"
when: breakpoint.installer == true

- name: fire off installer
shell: '{{ python_bin }} /tmp/dvinstall/install.py -f --config_file=default.config --noninteractive > /tmp/dvinstall/install.out 2>&1'
become: yes
Expand Down
4 changes: 4 additions & 0 deletions tests/group_vars/jenkins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ dataverse:
upgrade_only: false
version: '6.2'

breakpoint:
installer: false
test_suite: false

build_guides: false

db:
Expand Down
4 changes: 4 additions & 0 deletions tests/group_vars/memorytests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ dataverse:
upgrade_only: false
version: '6.2'

breakpoint:
installer: false
test_suite: false

build_guides: false

db:
Expand Down
4 changes: 4 additions & 0 deletions tests/group_vars/vagrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,10 @@ dataverse:
upgrade_only: false
version: '6.2'

breakpoint:
installer: false
test_suite: false

build_guides: false

db:
Expand Down