---
  #Processus workflow to [start|stop|restart] the mongod service

  name: Manage mongod service
  description: Processus workflow to [start|stop|restart] the mongod service

  #set workflow level params
  parameters:
    command: start

  tasks:

    manage service:
      blocking: true
      handler: ../taskhandlers/execHandler
      parameters:
        cmd: service mongod $[parameters.command]
