1
0
Fork 0
freesewing/ansible/playbooks/clone_production_database.yaml
2021-10-17 11:45:41 +02:00

10 lines
325 B
YAML

---
# 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.*'"