|
32 | 32 | userMach = "User's Virtual\nMachine"
|
33 | 33 | userGraph.node(outputEnv, **envNodeProps)
|
34 | 34 | userGraph.node(userMach, **machNodeProps)
|
35 |
| -userGraph.edge(outputEnv, userMach, "Vagrant and\nVirtualBox Creates", |
| 35 | +userGraph.edge(outputEnv, userMach, "Vagrant and\nVirtualBox creates", |
36 | 36 | {"color": "blue", "fontname": font})
|
37 | 37 |
|
38 | 38 | # Create developer graph.
|
|
45 | 45 | devGraph.node(outputEnv, **envNodeProps)
|
46 | 46 | devGraph.node(inputEnv, **envNodeProps)
|
47 | 47 | devGraph.node(devMach, **machNodeProps)
|
48 |
| -devGraph.edge(inputEnv, devMach, "Vagrant and\nVirtualBox Creates", |
| 48 | +devGraph.edge(inputEnv, devMach, "Vagrant and\nVirtualBox creates", |
49 | 49 | {"color": vboxVagrant, "fontname": font, "rank": "same"})
|
50 |
| -devGraph.edge(devMach, devMach, "Ansible\nProvisions", |
| 50 | +devGraph.edge(devMach, devMach, "Ansible\nprovisions", |
51 | 51 | {"color": ansible, "fontname": font})
|
52 |
| -devGraph.edge(devMach, outputEnv, "Vagrant\nPackages", |
| 52 | +devGraph.edge(devMach, outputEnv, "Vagrant\npackages", |
53 | 53 | {"color": vagrant, "fontname": font})
|
54 | 54 |
|
55 | 55 | # Combine and print graphs.
|
|
0 commit comments