PHP code example of jstewart / robo-ansible
1. Go to this page and download the library: Download jstewart/robo-ansible library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jstewart / robo-ansible example snippets
class RoboFile extends \Robo\Tasks
{
use \JoeStewart\Robo\Task\Ansible\loadTasks;
...
public function ansible($arg = '')
{
$result = $this->taskAnsible()->arg($arg)->run();
return $result;
}