-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVassar.lddl
37 lines (30 loc) · 923 Bytes
/
Vassar.lddl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* The LDDL script for configuring the ANC/Vassar LAPPS service node. This
* script configures the types, interfaces and services available.
*/
include 'Servers'
include 'Copyright'
if (args.clean) {
println "Cleaning the database"
include 'Cleanup'
}
else {
println "Assuming a fresh database install."
include 'DatabaseSetup'
}
// The Setup script includes the common LAPPS definitions for resource and
// service types, and meta-attribues.
include 'Setup'
// Include all .lddl files in the vassar directory.
//new File('vassar).eachFileMatch(~/.*\.lddl/) {
// include it.path
//}
// Definitions of the MASC DataSource resource
include 'vassar/MASC'
// Definitions of the processing services available at Vassar.
include 'vassar/Datasources'
include 'vassar/Converters'
include 'vassar/Gate'
include 'vassar/Stanford'
include 'vassar/Users'
news 'The ANC/Vassar LAPPS node has been configured via LDDL'