workflow_list.yml.dist 561 B

1234567891011121314151617181920212223242526
  1. framework:
  2. workflows:
  3. dhcp_workflow:
  4. type: state_machine
  5. marking_store:
  6. type: single_state
  7. arguments:
  8. - currentState
  9. supports:
  10. - HostBundle\Entity\Host
  11. - IPv4Bundle\Entity\Pool
  12. - IPv4Bundle\Entity\SubNet
  13. initial_place: active
  14. places:
  15. - active
  16. - disable
  17. transitions:
  18. add_config:
  19. from: active
  20. to: active
  21. disable:
  22. from: active
  23. to: disable
  24. active:
  25. from: disable
  26. to: active