
It's better, so a user can regenerate passwords and keys as needed by just running the playbook/role.
16 lines
357 B
YAML
16 lines
357 B
YAML
---
|
|
# Update apt cache
|
|
- apt: update_cache=yes
|
|
|
|
# Install python-paramiko
|
|
- apt: name=python-paramiko
|
|
|
|
- file: path=/etc/puppet/hieradata state=directory
|
|
|
|
- file: path=/etc/puppet/hieradata/production state=directory
|
|
|
|
- file: path=/etc/puppet/hieradata/production/fqdn state=directory
|
|
|
|
# Generate hiera common.yaml values
|
|
- script: generate_hiera_common.py
|