2015-12-07 23:25:05 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
service monkey-island stop || true
|
|
|
|
service monkey-mongo stop || true
|
|
|
|
|
|
|
|
rm -f /etc/init/monkey-island.conf
|
|
|
|
rm -f /etc/init/monkey-mongo.conf
|
2016-07-29 03:52:18 +08:00
|
|
|
[ -f "/lib/systemd/system/monkey-island.service" ] && rm -f /lib/systemd/system/monkey-island.service
|
|
|
|
[ -f "/lib/systemd/system/monkey-mongo.service" ] && rm -f /lib/systemd/system/monkey-mongo.service
|
|
|
|
|
2018-01-02 22:13:20 +08:00
|
|
|
rm -r -f /var/monkey_island
|
|
|
|
|
2016-07-29 03:52:18 +08:00
|
|
|
exit 0
|