Skip to content

Commit

Permalink
#349 add installer breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Don Sizemore committed May 16, 2024
1 parent 2f605ef commit a1ca48b
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
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

0 comments on commit a1ca48b

Please sign in to comment.