X-Git-Url: https://git.ralfj.de/saartuer.git/blobdiff_plain/abb21b78411793efcdf8832f6837201bfc4ce15c..cfdd8b51f663f6449f79d40becd4403fd780fd46:/tyshell diff --git a/tyshell b/tyshell index 1b90bd0..8d7070a 100755 --- a/tyshell +++ b/tyshell @@ -5,6 +5,8 @@ import shlex import sys import subprocess import socket +import pwd +import grp tuerSock = "/run/tuer.sock" @@ -44,12 +46,18 @@ def exitcmd(c): print("Bye") return True +def whocmd(c): + for n in grp.getgrnam("tuer").gr_mem: + p = pwd.getpwnam(n) + print (p.pw_name, " - ", p.pw_gecos) + commands = { 'exit': exitcmd, 'help': helpcmd, 'open': sendcmd(tuerSock, 'unlock'), 'unlock': sendcmd(tuerSock, 'unlock'), 'buzz': sendcmd(tuerSock, 'buzz'), + 'who': whocmd, } def complete_command(cmd):