Add all files needed to bring up VM and run agaric.com locally
This commit is contained in:
parent
52c8b60bac
commit
4d2bc0ee24
742 changed files with 24037 additions and 0 deletions
26
box/provisioning/roles/geerlingguy.postgresql/tasks/main.yml
Normal file
26
box/provisioning/roles/geerlingguy.postgresql/tasks/main.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
# Variable configuration.
|
||||
- include: variables.yml
|
||||
static: no
|
||||
|
||||
# Setup/install tasks.
|
||||
- include: setup-RedHat.yml
|
||||
when: ansible_os_family == 'RedHat'
|
||||
static: no
|
||||
|
||||
- include: setup-Debian.yml
|
||||
when: ansible_os_family == 'Debian'
|
||||
static: no
|
||||
|
||||
- include: initialize.yml
|
||||
- include: configure.yml
|
||||
|
||||
- name: Ensure PostgreSQL is started and enabled on boot.
|
||||
service:
|
||||
name: "{{ postgresql_daemon }}"
|
||||
state: started
|
||||
enabled: yes
|
||||
|
||||
# Configure PostgreSQL.
|
||||
- include: databases.yml
|
||||
- include: users.yml
|
Loading…
Add table
Add a link
Reference in a new issue