summaryrefslogtreecommitdiff
path: root/scaffold
diff options
context:
space:
mode:
Diffstat (limited to 'scaffold')
-rw-r--r--scaffold/Role.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/scaffold/Role.php b/scaffold/Role.php
new file mode 100644
index 0000000..c89b43b
--- /dev/null
+++ b/scaffold/Role.php
@@ -0,0 +1,11 @@
+<?php
+
+class Role implements \PHPIAC\RoleInterface
+{
+ public function __invoke(array $config): array
+ {
+ return [
+ (new \PHPIAC\Task())->setModule(new \PHPIAC\Modules\AptModule('zsh')),
+ ];
+ }
+}