11 lines
224 B
Bash
Executable file
11 lines
224 B
Bash
Executable file
#!/bin/sh
|
|
|
|
|
|
set -x
|
|
service mongod stop
|
|
service diaspora-ws stop
|
|
rm -rf /var/lib/mongod/*
|
|
cp /usr/share/diaspora/master/config/app_config.yml.example \
|
|
/usr/share/diaspora/master/config/app_config.yml
|
|
service mongod start
|
|
|