- hosts: doctor become: yes vars_files: - doctor.vars.yml tasks: - name: Load vars include_vars: file: doctor.vars.yml name: vars - name: Install useful stuff package: name: [htop, sudo, tmux, vim-lite, bash] state: present - name: Install extra stuff package: name: [git, gnupg] state: present - import_tasks: doctor.services.yml - import_tasks: doctor.user.yml - import_playbook: doctor.jails.yml # vim: smartindent autoindent shiftwidth=2 tabstop=2 expandtab