freebsd-home-server/doctor.yml

30 lines
566 B
YAML
Raw Permalink Normal View History

2018-03-12 11:17:18 +01:00
- hosts: doctor
2018-03-05 17:06:51 +01:00
become: yes
2018-03-12 11:17:18 +01:00
vars_files:
- doctor.vars.yml
2018-03-05 17:06:51 +01:00
tasks:
2018-03-12 11:17:18 +01:00
- name: Load vars
include_vars:
file: doctor.vars.yml
name: vars
2018-03-05 17:06:51 +01:00
- name: Install useful stuff
package:
name: [htop, sudo, tmux, vim-lite, bash]
state: present
2018-03-12 11:17:18 +01:00
2018-03-05 17:06:51 +01:00
- name: Install extra stuff
package:
name: [git, gnupg]
state: present
2018-03-12 11:17:18 +01:00
- import_tasks: doctor.services.yml
- import_tasks: doctor.user.yml
- import_playbook: doctor.jails.yml
2018-03-05 17:06:51 +01:00
# vim: smartindent autoindent shiftwidth=2 tabstop=2 expandtab