aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.yaml8
-rw-r--r--install.yaml12
2 files changed, 20 insertions, 0 deletions
diff --git a/config.yaml b/config.yaml
new file mode 100644
index 0000000..e0b4b83
--- /dev/null
+++ b/config.yaml
@@ -0,0 +1,8 @@
+---
+packages:
+ - development
+ - gaming
+system:
+opt:
+config:
+
diff --git a/install.yaml b/install.yaml
new file mode 100644
index 0000000..407b772
--- /dev/null
+++ b/install.yaml
@@ -0,0 +1,12 @@
+- name: System Configuration
+ hosts: localhost
+ connection: local
+ vars:
+ config: "{{ lookup('file','config.yaml') | from_yaml }}"
+ tasks:
+ - name: Startup
+ debug:
+ msg: Starting system setup
+ - name: Package Management
+ include_role:
+ name: "src/packages"