summaryrefslogtreecommitdiff
path: root/tests/examplefiles/roboconf.graph
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/roboconf.graph')
-rw-r--r--tests/examplefiles/roboconf.graph40
1 files changed, 0 insertions, 40 deletions
diff --git a/tests/examplefiles/roboconf.graph b/tests/examplefiles/roboconf.graph
deleted file mode 100644
index e5fdedff..00000000
--- a/tests/examplefiles/roboconf.graph
+++ /dev/null
@@ -1,40 +0,0 @@
-##################
-# A sample graph
-##################
-
-import some-definition.graph;
-import another-definition.graph;
-
-VM {
- installer : target;
- children: deployable;
-}
-
-facet deployable {
- # nothing
-}
-
-# Sample deployables
-mysql {
- insTaller: puppet;
- facets: deployable;
- exports: ip, port = 3306;
-}
-
-tomcat {
- installer: bash;
- facets: deployable;
- exports: ip;
- children: web-application;
-}
-
-facet web-application {
- exports: full-path = undefined;
-}
-
-my-war-1 {
- facets: web-application;
- installer: file;
- exports: full-path = apps/my-war-1; # the relative path
- imports: mysql.*;
-}