mirror of
https://github.com/krislamo/vagrant-easyredmine
synced 2024-11-12 23:50:34 +00:00
76 lines
1.6 KiB
Django/Jinja
Executable File
76 lines
1.6 KiB
Django/Jinja
Executable File
#!/usr/bin/expect
|
||
|
||
# EuPathDB wrapper on EasyRedmine installer for
|
||
# non-interactive installs by Ansible
|
||
|
||
set timeout -1
|
||
|
||
# spawn ~/bin/redmine install {{ remote_scratch_path }}/easyredmine_package_u2072_d201511101601.zip
|
||
spawn redmine install {{ remote_scratch_path }}/easyredmine_package_u2072_d201511101601.zip
|
||
|
||
expect -re {[\r\n]+Path for redmine_root}
|
||
send "{{ redmine_root_dir }}\r"
|
||
|
||
# Database Configuration
|
||
expect -re {[\r\n]+> }
|
||
send "1\r"; # MySQL
|
||
|
||
expect -re {[\r\n]+Database: }
|
||
send "{{ redmine_db_name }}\r"
|
||
|
||
expect -re {[\r\n]+Host }
|
||
send "{{ redmine_db_host }}\r"
|
||
|
||
expect -re {[\r\n]+Username:}
|
||
send "{{ redmine_db_user }}\r"
|
||
|
||
expect -re {[\r\n]+Password:}
|
||
send "{{ redmine_db_password }}\r"
|
||
|
||
expect -re {[\r\n]+Encoding}
|
||
send "{{ redmine_db_encoding }}\r"
|
||
|
||
expect -re {[\r\n]+Port}
|
||
send "{{ redmine_db_port }}\r"
|
||
|
||
# Email sending configuration
|
||
expect -re {[\r\n]+> }
|
||
send "3\r"; # SMTP from scratch
|
||
|
||
expect -re {[\r\n]+Address:}
|
||
send "{{ smtp_address }}\r"
|
||
|
||
expect -re {[\r\n]+Port }
|
||
send "{{ smtp_port }}\r"
|
||
|
||
expect -re {[\r\n]+Domain: }
|
||
send "{{ smtp_domain }}\r"
|
||
|
||
expect -re {[\r\n]+User_name:}
|
||
send "{{ smtp_username }}\r"
|
||
|
||
expect -re {[\r\n]+Password:}
|
||
send "{{ smtp_password }}\r"
|
||
|
||
expect -re {[\r\n]+Authentication:}
|
||
send "{{ smtp_authentication }}\r"
|
||
|
||
expect -re {[\r\n]+Enable_starttls_auto:}
|
||
send "{{ smtp_enable_starttls }}\r"
|
||
|
||
# # Email sending configuration
|
||
# expect -re {[\r\n]+> }
|
||
# send "1\r"; # GMail
|
||
# |