diff options
Diffstat (limited to 'test/config.php')
-rw-r--r-- | test/config.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/config.php b/test/config.php new file mode 100644 index 0000000..cf97afd --- /dev/null +++ b/test/config.php @@ -0,0 +1,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', + ]), + ], +]; |