mirror of
https://github.com/diaspora/diaspora.git
synced 2026-04-29 03:01:03 -04:00
15 lines
301 B
Bash
Executable File
15 lines
301 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Try to revert to pristine state, deleting all users and
|
|
# configuration
|
|
|
|
set -x
|
|
service mongod stop
|
|
service diaspora-ws stop
|
|
rm -rf /var/lib/mongodb/*
|
|
cp /usr/share/diaspora/master/config/app_config.yml.example \
|
|
/usr/share/diaspora/master/config/app_config.yml
|
|
service mongod start
|
|
|
|
|