24 lines
460 B
YAML
24 lines
460 B
YAML
- hosts: '{{ variable_host | default("lab15_standard") }}'
|
|
gather_facts: no
|
|
become: yes
|
|
tasks:
|
|
- name: Update and upgrade software
|
|
apt:
|
|
upgrade: yes
|
|
update_cache: yes
|
|
pkg:
|
|
- vim
|
|
|
|
|
|
- name: Configure ntp server
|
|
import_playbook: config/config_ntp.yaml
|
|
|
|
- name: Configure grub
|
|
import_playbook: config/config_grub.yaml
|
|
|
|
- name: Configure LDAP
|
|
import_playbook: config/config_ldap.yaml
|
|
|
|
|
|
|