aboutsummaryrefslogtreecommitdiff
path: root/install.yaml
blob: 32739017d0986d4475eec93d6770118635faf2fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- 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"