diff options
author | root <root@darth_serious> | 2014-05-12 16:31:10 +0200 |
---|---|---|
committer | root <root@darth_serious> | 2014-05-12 16:31:10 +0200 |
commit | 17f3fc71f06f4b27ee3831114dcca7b80384e334 (patch) | |
tree | 462cb51535ebbe85903d5281816e242d4c46c1e7 /elchos/commands/identify | |
parent | e99776a9a3eaf65a5d0a17182c11f08a88a5092f (diff) |
elchos is now a Reaktor submodule
Diffstat (limited to 'elchos/commands/identify')
-rwxr-xr-x | elchos/commands/identify | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/elchos/commands/identify b/elchos/commands/identify new file mode 100755 index 0000000..c2fb2c5 --- /dev/null +++ b/elchos/commands/identify @@ -0,0 +1,22 @@ +#!/usr/bin/env python +import imp +import os,sys + +def load_config(filename): + dirname = os.path.dirname(filename) + modname, ext = os.path.splitext(os.path.basename(filename)) + file, pathname, description = imp.find_module(modname, [ dirname ]) + return imp.load_module(modname, file, pathname, description) + +config = load_config(os.environ['config_filename']) + +with open(config.admin_file) as f: + for line in f: + nick,secret = line.split() + if sys.argv[1] == secret: + print("identified you as %s!"%nick) + with open(config.auth_file,'a+') as g: + g.write(os.environ['_prefix'] +"\n") + sys.exit(0) + +print("unable to identify you, sorry") |