summaryrefslogtreecommitdiff
path: root/test/config.php
blob: cf97afd945f7aff7e3988942dde9fbfaf3418272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

require dirname(__DIR__) . '/vendor/autoload.php';

return [
  'host' => 'vagrant',
  'user' => 'vagrant',
  'private_key_file' => __DIR__ . '/.vagrant/machines/default/virtualbox/private_key',

  'tasks' => [
    ...(new \Dweipert\DevOps\UnattendedUpgrades\UnattendedUpgrades())([
        'unattended_mail' => 'test@example.org',
    ]),
  ],
];