#!/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({})) }}" needrestart: "{{ glob_needrestart | default({}) | combine(loc_needrestart | default({})) }}" unattended: "{{ glob_unattended | default({}) | combine(loc_unattended | default({})) }}" roles: - root - common-tools - sudo - ntp-client - root-config - needrestart - unattended-upgrades