blob: 6cc5eccb75676286c32f51c402d1684a99c65520 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
include dirname(__DIR__) . '/vendor/autoload.php';
return [
'host' => 'vagrant',
'user' => 'vagrant',
'private_key_file' => __DIR__ . '/.vagrant/machines/default/virtualbox/private_key',
'tasks' => [
...(new \Dweipert\DevOps\BaseServerSetup\BaseServerSetup())([
'username' => 'dweipert',
'password' => '1234',
'mail' => 'test@example.org',
]),
],
];
|