Add a manual playbooks subdir for playbooks that are only ever manually run.
This commit is contained in:
parent
cc7c6d6b09
commit
18ae748d02
1 changed files with 29 additions and 0 deletions
29
playbooks/manual/sign.yml
Normal file
29
playbooks/manual/sign.yml
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue