forked from p15670423/monkey
13 lines
388 B
Bash
13 lines
388 B
Bash
#!/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
|
|
[ -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
|
|
|
|
rm -r -f /var/monkey_island
|
|
|
|
exit 0 |