summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authors7hoang2019-04-19 22:59:07 -0400
committers7hoang2019-04-19 22:59:07 -0400
commitb4fb81e9fe1760da46385bb0aedbaa646b5635e3 (patch)
tree0950aa9f4facc4452e0f50b5c0dd42d6954e5105
parent795f3f3b2166e09de6e28b922a48a85921790d42 (diff)
downloadaur-b4fb81e9fe1760da46385bb0aedbaa646b5635e3.tar.gz
Remove Unused File
-rw-r--r--ankiserverctl.py.patch90
1 files changed, 0 insertions, 90 deletions
diff --git a/ankiserverctl.py.patch b/ankiserverctl.py.patch
deleted file mode 100644
index a6e92251ebef..000000000000
--- a/ankiserverctl.py.patch
+++ /dev/null
@@ -1,90 +0,0 @@
---- ankiserverctl.py.orig 2016-03-13 20:18:43.119078359 +0100
-+++ ankiserverctl.py 2016-03-13 20:20:44.351755216 +0100
-@@ -1,68 +1,25 @@
--#!/usr/bin/env python
-+#!/usr/bin/env python2
-
- import os
- import sys
--import signal
--import subprocess
- import binascii
- import getpass
- import hashlib
- import sqlite3
-
--SERVERCONFIG = "production.ini"
--AUTHDBPATH = "auth.db"
--PIDPATH = "/tmp/ankiserver.pid"
--COLLECTIONPATH = "collections/"
-+SERVERCONFIG = "/etc/anki-sync-server/production.ini"
-+AUTHDBPATH = "/var/lib/anki-sync-server/auth.db"
-+COLLECTIONPATH = "/var/lib/anki-sync-server/collections/"
-
- def usage():
- print "usage: "+sys.argv[0]+" <command> [<args>]"
- print
- print "Commands:"
-- print " start [configfile] - start the server"
-- print " debug [configfile] - start the server in debug mode"
-- print " stop - stop the server"
- print " adduser <username> - add a new user"
- print " deluser <username> - delete a user"
- print " lsuser - list users"
- print " passwd <username> - change password of a user"
-
--def startsrv(configpath, debug):
-- if not configpath:
-- configpath = SERVERCONFIG
--
-- # We change to the directory containing the config file
-- # so that all the paths will be relative to it.
-- configdir = os.path.dirname(configpath)
-- if configdir != '':
-- os.chdir(configdir)
-- configpath = os.path.basename(configpath)
--
-- if debug:
-- # Start it in the foreground and wait for it to complete.
-- subprocess.call( ["paster", "serve", configpath], shell=False)
-- return
--
-- devnull = open(os.devnull, "w")
-- pid = subprocess.Popen( ["paster", "serve", configpath],
-- stdout=devnull,
-- stderr=devnull).pid
--
-- with open(PIDPATH, "w") as pidfile:
-- pidfile.write(str(pid))
--
--def stopsrv():
-- if os.path.isfile(PIDPATH):
-- try:
-- with open(PIDPATH) as pidfile:
-- pid = int(pidfile.read())
--
-- os.kill(pid, signal.SIGKILL)
-- os.remove(PIDPATH)
-- except Exception, error:
-- print >>sys.stderr, sys.argv[0]+": Failed to stop server: "+error.message
-- else:
-- print >>sys.stderr, sys.argv[0]+": The server is not running"
--
- def adduser(username):
- if username:
- print "Enter password for "+username+": "
-@@ -145,13 +102,7 @@
- if argc < 3:
- sys.argv.append(None)
-
-- if sys.argv[1] == "start":
-- startsrv(sys.argv[2], False)
-- elif sys.argv[1] == "debug":
-- startsrv(sys.argv[2], True)
-- elif sys.argv[1] == "stop":
-- stopsrv()
-- elif sys.argv[1] == "adduser":
-+ if sys.argv[1] == "adduser":
- adduser(sys.argv[2])
- elif sys.argv[1] == "deluser":
- deluser(sys.argv[2])