diff options
Diffstat (limited to 'install.yaml')
-rw-r--r-- | install.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
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" |