1234567891011121314151617181920212223242526 |
- framework:
- workflows:
- dhcp_workflow:
- type: state_machine
- marking_store:
- type: single_state
- arguments:
- - currentState
- supports:
- - IPv4Bundle\Entity\Host
- - IPv4Bundle\Entity\Pool
- - IPv4Bundle\Entity\SubNet
- initial_place: active
- places:
- - active
- - disable
- transitions:
- add_config:
- from: active
- to: active
- disable:
- from: active
- to: disable
- active:
- from: disable
- to: active
|