cc-2055: switch to init.d

-remove update-rc.d on uninstall
-remove unecessary imports in install/uninstall scripts
-all daemons now wait until apache2 is available before starting (LSB Init Script)
This commit is contained in:
martin 2011-06-01 14:18:58 -04:00
parent 6ab5ac4582
commit 4c9c86bf4f
12 changed files with 42 additions and 20 deletions

View file

@ -1,14 +0,0 @@
import os
import time
def remove_user(username):
os.system("killall -u %s 1>/dev/null 2>&1" % username)
#allow all process to be completely closed before we attempt to delete user
print "Waiting for processes to close..."
time.sleep(3)
os.system("deluser --remove-home " + username + " 1>/dev/null 2>&1")
if __name__ == "__main__":
remove_user("pypo")