diff options
author | Daniel Weipert <code@drogueronin.de> | 2021-04-28 14:49:16 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2021-04-28 14:49:16 +0200 |
commit | 50c2fbafe6bf15909b893ddf0c862af3f7e848cb (patch) | |
tree | 72bf5479a39faedde566bc6953c2c0845e986d8d /test/config.php |
Initial commitv1.0.0
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', + ]), + ], +]; |