forked from datashield/dsBetaTestClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines_site.pp
23 lines (21 loc) · 1001 Bytes
/
azure-pipelines_site.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Datashield for Azure Pipelines testing.
#
# Install mysql and mongodb, include test data but don't install the firewall.
# This is an example please change to meet the needs of your install. Consider changing any passwords in this file!
#
class { ::datashield:
test_data => true, # Install the test data
firewall => false, # Do not install the firewall
mysql => true, # Install mysql server
mongodb => true, # Install mongodb server
remote_mongodb => false, # There is not a remote mongodb server
remote_mysql => false, # There is not a remote mysql server
dsbase_githubusername => 'datashield',
dsbase_ref => 'master',
dsstats_githubusername => 'datashield',
dsstats_ref => 'master',
dsgraphics_githubusername => 'datashield',
dsgraphics_ref => 'master',
dsmodelling_githubusername => 'datashield',
dsmodelling_ref => 'master'
}