summaryrefslogtreecommitdiff
path: root/test/config.php
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2021-04-28 14:49:16 +0200
committerDaniel Weipert <code@drogueronin.de>2021-04-28 14:49:16 +0200
commit50c2fbafe6bf15909b893ddf0c862af3f7e848cb (patch)
tree72bf5479a39faedde566bc6953c2c0845e986d8d /test/config.php
Initial commitv1.0.0
Diffstat (limited to 'test/config.php')
-rw-r--r--test/config.php15
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',
+ ]),
+ ],
+];