From 36a68aa589971142a3ccacdb8e3d803ac950fb3a Mon Sep 17 00:00:00 2001 From: martin Date: Wed, 23 Mar 2011 16:37:35 -0400 Subject: [PATCH] -incorrectly removing directories in pypo-uninstall script fixed --- pypo/install/pypo-uninstall.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pypo/install/pypo-uninstall.py b/pypo/install/pypo-uninstall.py index a9f339be0..6dcc42ce5 100644 --- a/pypo/install/pypo-uninstall.py +++ b/pypo/install/pypo-uninstall.py @@ -38,16 +38,16 @@ try: remove_path(BASE_PATH) print "Removing daemontool script pypo" - remove_path("rm -rf /etc/service/pypo") + remove_path("/etc/service/pypo") if os.path.exists("/etc/service/pypo-fetch"): - remove_path("rm -rf /etc/service/pypo-fetch") + remove_path("/etc/service/pypo-fetch") if os.path.exists("/etc/service/pypo-push"): - remove_path("rm -rf /etc/service/pypo-push") + remove_path("/etc/service/pypo-push") print "Removing daemontool script pypo-liquidsoap" - remove_path("rm -rf /etc/service/pypo-liquidsoap") + remove_path("/etc/service/pypo-liquidsoap") remove_user("pypo") print "Uninstall complete."