Files
mgmt/examples/lang/autoedges1.mcl
James Shubin 78936c5ce8 examples: lang: Update examples to fix imports and port from yaml
Some small fixes that are useful for demos!
2019-02-01 03:47:18 -05:00

31 lines
488 B
Plaintext

pkg "drbd-utils" {
state => "installed",
Meta:autoedge => true,
Meta:noop => true,
}
file "/etc/drbd.conf" {
content => "this is an mgmt test",
state => "exists",
Meta:autoedge => true,
Meta:noop => true,
}
file "/etc/drbd.d/" {
source => "/dev/null",
state => "exists",
Meta:autoedge => true,
Meta:noop => true,
}
# note that the autoedges between the files and the svc don't exist yet :(
svc "drbd" {
state => "stopped",
Meta:autoedge => true,
Meta:noop => true,
}