Sha256: a3b653cadcf0ac4e9aef61abd2d9a6ffc194eda990e794297ba0f6a36171ff3d

Contents?: true

Size: 392 Bytes

Versions: 2

Compression:

Stored size: 392 Bytes

Contents

//include "cloud-classes.sfp"
include "service-classes.sfp"

initial state {
	s1 isa Service {
		installed is true
		running either (true, false)
	}
	s2 isa Service {
		installed is true
		running either (true, false)
	}
	pc isa Client {
		refer either (s1, s2)
	}
}
goal constraint {
	s1.running is false
	s2.running is true
	pc.refer is s2
}
global constraint {
	pc.refer.running is true
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sfp-0.1.1 test/service1.sfp
sfp-0.1.0 test/service1.sfp