Add a manual playbooks subdir for playbooks that are only ever manually run.

This commit is contained in:
Kevin Fenzi 2014-01-07 17:16:22 +00:00
parent cc7c6d6b09
commit 18ae748d02

29
playbooks/manual/sign.yml Normal file
View file

@ -0,0 +1,29 @@
# provision a new sign server.
# NOTE: this assumes the boxes are already up and are accessible
# NOTE: most of these vars_path come from group_vars/sign or from hostvars
#
# FURTHER NOTE: some of These machines run day to day with sshd disabled/off.
# Access is via management interface only. This playbook does initial setup.
# Please check with rel-eng before doing anything here.
- name: make sign server
hosts: sign
user: root
gather_facts: true
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "{{ private }}/vars.yml"
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
roles:
- /srv/web/infra/ansible/roles/base
- /srv/web/infra/ansible/roles/rkhunter
tasks:
- include: "{{ tasks }}/serialgetty.yml"
- include: "{{ tasks }}/motd.yml"
- include: "{{ tasks }}/sign_setup.yml"
handlers:
- include: "{{ handlers }}/restart_services.yml"