* Fix Process() object calling * Add PokeParent() to poke upwards * Break linear exec chains :( This was the issue where in a graph f1 -> f2, if you were to rm f2 && cat f2, then f2 would not come back because we didn't poke upwards to refresh the timestamp. Unfortunately this adds another bug which we solve in a later patch.
23 lines
304 B
YAML
23 lines
304 B
YAML
---
|
|
graph: mygraph
|
|
types:
|
|
file:
|
|
- name: file1
|
|
path: "/tmp/mgmt/f1"
|
|
content: |
|
|
i am f1
|
|
state: exists
|
|
- name: file2
|
|
path: "/tmp/mgmt/f2"
|
|
content: |
|
|
i am f2
|
|
state: exists
|
|
edges:
|
|
- name: e1
|
|
from:
|
|
type: file
|
|
name: file1
|
|
to:
|
|
type: file
|
|
name: file2
|