aboutsummaryrefslogtreecommitdiff
path: root/install.yaml
blob: 5177032419c407d512d47973d51041b350eda189 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- 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"
    - name: Configs Setup
      include_role:
        name: "src/config"
    - name: System setup
      include_role:
        name: "src/system"