1
0
Fork 0
freesewing/ansible/playbooks/clone_production_database.yaml

11 lines
325 B
YAML
Raw Normal View History

2021-10-17 11:45:41 +02:00
---
# Hardcoding this to prevent accidentally dropping the production database
- hosts: backend.freesewing.org
gather_facts: false
become: true
tasks:
- name: Clone production database
shell: "mongodump --archive --db=freesewing | mongorestore --archive --nsFrom='freesewing.*' --nsTo='next_freesewing.*'"