#!/usr/bin/env ansible-playbook
---
- hosts: server
  vars:
    root: '{{ glob_root | default({}) | combine(loc_root | default({})) }}'
    ntp_client: '{{ glob_ntp_client | combine(loc_ntp_client | default({})) }}'
  roles:
    - root
    - common-tools
    - sudo
    - ntp-client
    - root-config
    - ssh_known_hosts

- hosts: server,!virtu
  roles:
    - openssh