This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ### BEGIN INIT INFO | |
| # Provides: errorboard | |
| # Required-Start: $remote_fs $named $syslog | |
| # Required-Stop: $remote_fs $named $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Run errorboard as daemon | |
| # Description: Errorboard.js | |
| ### END INIT INFO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require_once 'WorkflowDefinition.php'; | |
| require_once 'Execution.php'; | |
| $wbuilder = new WfBuilder(); | |
| $workflow_definition = $wbuilder->build_workflow(); | |
| $execution = new ezcWorkflowTestExecution(1); | |
| $execution->workflow = $workflow_definition; |